From 2cb019ff5c0aea4d288c05587ffbd28069a3de4e Mon Sep 17 00:00:00 2001 From: Tykayn Date: Fri, 18 Aug 2023 11:25:02 +0200 Subject: [PATCH] add tests --- convert_to_osm_tags.ts | 17 +- data_other/testing/mappings_to_test.ts | 79 +- data_other/testing/testing.json | 4 +- .../.~lock.irve-junglebus.csv# | 1 - make_variance_from_csv.ts | 10 +- mappings/converters/configIRVE.ts | 5 +- mappings/converters/configTest.ts | 21 + mappings/engine.ts | 15 +- output/my_converted_data_set.json | 1153950 +------------- package.json | 3 +- tests/main.test.js | 35 +- 11 files changed, 148 insertions(+), 1153992 deletions(-) delete mode 100644 etalab_data/irve_bornes_recharge/.~lock.irve-junglebus.csv# create mode 100644 mappings/converters/configTest.ts diff --git a/convert_to_osm_tags.ts b/convert_to_osm_tags.ts index cb3723f..f09ca69 100644 --- a/convert_to_osm_tags.ts +++ b/convert_to_osm_tags.ts @@ -5,6 +5,7 @@ import * as fs from 'fs' import mappingConfigIRVE from './mappings/converters/configIRVE' import mappingConfigIRVE_simple from './mappings/converters/mappingConfigIRVE_simple' +import mappingTest from './mappings/converters/configTest' import mapping_engine from './mappings/engine' import {BoundingBoxCoordinatesType, FeatureCollection} from "./mappings/mapping-config.type"; import utils from './mappings/utils' @@ -17,7 +18,7 @@ const debugLog = utils.debugLog; let use_mapping_engine = false use_mapping_engine = true -let Mapping_engine = new mapping_engine(mappingConfigIRVE) + let mini_arguments: any = minimist(process.argv.slice(2)) @@ -55,6 +56,14 @@ if (mini_arguments['source']) { if (mini_arguments['engine']) { use_mapping_engine = mini_arguments['engine'] } +let Mapping_engine:any; + +if (mini_arguments['testingConfig']) { + console.log('testing') + Mapping_engine = new mapping_engine(mappingTest) +}else{ + Mapping_engine = new mapping_engine(mappingConfigIRVE) +} let filterZipCode = new RegExp(`^${filterDepartment}`) let filterZipCodeAdresse = new RegExp(` ${filterDepartment}`) @@ -285,8 +294,10 @@ function mapElementFromConfSimple(featurePoint: any, mappingConfig: any) { if (use_mapping_engine) { debugLog(' - using mapping engine') debugLog(' - pointCounterMax', pointCounterMax) - Mapping_engine.setConfig(mappingConfigIRVE) - convertDataForIRVE(sourceFilePathGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) + + // Mapping_engine.setConfig(mappingConfigIRVE) + let currentMappingConfig = Mapping_engine.getConfig(); + convertDataForIRVE(sourceFilePathGeoJson, currentMappingConfig, pointCounterMax, boundingBoxCoordinates) } else { diff --git a/data_other/testing/mappings_to_test.ts b/data_other/testing/mappings_to_test.ts index b3a13b9..e4d5627 100644 --- a/data_other/testing/mappings_to_test.ts +++ b/data_other/testing/mappings_to_test.ts @@ -1,34 +1,63 @@ -import MappingConfigType from "../../mappings/mapping-config.type"; +import MappingConfigType, {FeaturePropertyMappingConfigType} from "../../mappings/mapping-config.type"; /** * configurations de mapping pour les cas de tests */ export const mappingRemoveAll: MappingConfigType = { - config_name: 'testing config', + config_name: 'testing config mappingRemoveAll', config_author: 'tykayn ', - default_properties_of_point: { - 'amenity': 'charging_station' - }, - tags: { - nom_amenageur: { - key_converted: 'autre_nom_amenageur', - conditional_values: { - 'Accessibilité inconnue': { - ignore_this_data: true, // ne pas ajouter de tag si la valeur est égale à Accessibilité inconnue. - }, - } - } - } + default_properties_of_point: {}, + tags: {}, + add_not_mapped_tags_too: false, + source: {}, + filters: {}, } -export const mappingIgnore: MappingConfigType = { - config_name: 'testing config', +export const mappingSame: MappingConfigType = { + config_name: 'testing config mappingSame', config_author: 'tykayn ', - default_properties_of_point: { - 'amenity': 'charging_station' - }, + default_properties_of_point: {}, tags: { - nom_amenageur: { - ignore_this_data: true, - } - } -} \ No newline at end of file + equal : 'equal' + }, + add_not_mapped_tags_too: false, + source: {}, + filters: {}, +} +export const mappingName: MappingConfigType = { + config_name: 'testing config mappingName', + config_author: 'tykayn ', + default_properties_of_point: {}, + tags: { + nom_amenageur : 'name' + }, + add_not_mapped_tags_too: true, + source: {}, + filters: {}, +} +export const mappingPhone: MappingConfigType = { + + config_name: 'testing config mappingPhone', + config_author: 'tykayn ', + default_properties_of_point: {}, + tags: { + telephone_operateur: { + key_converted: 'phone', + convert_to_phone: true, // convertit en yes ou no + }, + }, + add_not_mapped_tags_too: false, + source: {}, + filters: {}, +} +// export const mappingIgnore: MappingConfigType = { +// config_name: 'testing config', +// config_author: 'tykayn ', +// default_properties_of_point: { +// 'amenity': 'charging_station' +// }, +// tags: { +// nom_amenageur: { +// ignore_this_data: true, +// } +// } +// } \ No newline at end of file diff --git a/data_other/testing/testing.json b/data_other/testing/testing.json index eef03d8..fd99ec8 100644 --- a/data_other/testing/testing.json +++ b/data_other/testing/testing.json @@ -11,8 +11,10 @@ ] }, "properties": { - "nom_amenageur": "ELECTRA", + "nom_amenageur": "Bob", "siren_amenageur": "891624884", + "telephone_operateur": "0123456789", + "equal": "same value", "consolidated_commune": "S\u00e9r\u00e9zin-du-Rh\u00f4ne", "consolidated_is_lon_lat_correct": true } diff --git a/etalab_data/irve_bornes_recharge/.~lock.irve-junglebus.csv# b/etalab_data/irve_bornes_recharge/.~lock.irve-junglebus.csv# deleted file mode 100644 index 85883fa..0000000 --- a/etalab_data/irve_bornes_recharge/.~lock.irve-junglebus.csv# +++ /dev/null @@ -1 +0,0 @@ -,tykayn,spaceship,11.08.2023 21:43,file:///home/tykayn/.config/libreoffice/4; \ No newline at end of file diff --git a/make_variance_from_csv.ts b/make_variance_from_csv.ts index 493d023..a255c2e 100644 --- a/make_variance_from_csv.ts +++ b/make_variance_from_csv.ts @@ -11,17 +11,21 @@ import {parse} from 'csv' const fs = require('fs') const minimist = require('minimist') +let mini_arguments: any = minimist(process.argv.slice(2)) + interface VarianceType { [key: string]: Array } let csv_content = 'variance de dataset\n'; let separator = ';'; -// let columns_headings = []; let data_variance: VarianceType = {}; -const inputPath = './etalab_data/toilettes/sanisettesparis_reworked.csv' -// const inputPath = './etalab_data/small.csv' +// const inputPath = './etalab_data/toilettes/sanisettesparis_reworked.csv' +const inputPath = './etalab_data/small.csv' +if (mini_arguments['source']) { + inputPath = mini_arguments['source'] +} let columns_headings: Array = []; let lines_count = 0; let longest_variance_count = 0; diff --git a/mappings/converters/configIRVE.ts b/mappings/converters/configIRVE.ts index 7cb4b8c..c375e2c 100644 --- a/mappings/converters/configIRVE.ts +++ b/mappings/converters/configIRVE.ts @@ -39,7 +39,10 @@ const MappingIRVE: MappingConfigType = { nom_amenageur: 'operator', siren_amenageur: 'owner:ref:FR:SIREN', nom_operateur: 'operator', - telephone_operateur: 'phone', + telephone_operateur: { + key_converted: 'phone', + convert_to_phone: true, // convertit en yes ou no + }, contact_operateur: 'email', // ici, on souhaite convertir la clé contact_operateur=bidule en email=bidule // id_station_itinerance: 'ref:EU:EVSE', diff --git a/mappings/converters/configTest.ts b/mappings/converters/configTest.ts new file mode 100644 index 0000000..7c0da43 --- /dev/null +++ b/mappings/converters/configTest.ts @@ -0,0 +1,21 @@ +/** + * plan de conversion des clés du jeu de données vers les tags OSM + * détail dans le tableau + * https://wiki.openstreetmap.org/wiki/France/data.gouv.fr/Bornes_de_Recharge_pour_V%C3%A9hicules_%C3%89lectriques + */ +import MappingConfigType from "../mapping-config.type"; + +const MappingTest: MappingConfigType = { + config_name: 'testing config mappingSame', + config_author: 'tykayn ', + default_properties_of_point: {}, + tags: { + nom_amenageur : 'name' + }, + add_not_mapped_tags_too: false, + source: {}, + filters: {}, +} + + +export default MappingTest; diff --git a/mappings/engine.ts b/mappings/engine.ts index b05b218..053bb78 100644 --- a/mappings/engine.ts +++ b/mappings/engine.ts @@ -18,13 +18,19 @@ export default class { mapping_config: any = {} constructor(mappingConfig: MappingConfigType) { + this.setConfig(mappingConfig) } setConfig(mappingConfig: MappingConfigType) { + console.log('load config', mappingConfig.config_name) this.mapping_config = mappingConfig } + getConfig() { + return this.mapping_config + } + mapFeaturePoint(featurePointGeoJson: any) { let geoJSONConvertedPoint: any = {} @@ -85,7 +91,7 @@ export default class { mapElementFromConf(featurePoint: any): any { // debugLog('mapElementFromConf: mapElementFromConf', featurePoint) if (!this.mapping_config) { - throw new Error('no config was loaded in the mapping engine. use setConfig(my_mapping_config) on this instance of mapping engine before using this.') + throw new Error('no config was loaded in the mapping engine. use setConfig(my_mapping_config) on this instance of mapping engine before using this. Your config should be typed to MappingConfigType Type.') } debugLog('mapElementFromConf: config_name', this.mapping_config.config_name) @@ -234,6 +240,11 @@ export default class { } else { debugLog('convertProperty: is NOT having boolean_value_conversion', mappingValueObject) } + if (configObject.convert_to_phone) { + console.log('originalValue', originalValue.substring(1)) + let temp = `${'' + originalValue.substring(1)}` + convertedValue = `+33 ${temp}`; + } if (configObject.remove_original_key) { remove_original_key = true } @@ -311,7 +322,7 @@ export default class { } debugLog('convertProperty: convertedValue ==========> {', newKey, ':', convertedValue, '}') - debugLog(' =============== remove_original_key',newKey, remove_original_key) + debugLog(' =============== remove_original_key', newKey, remove_original_key) if (!remove_original_key && newKey && convertedValue && !configObject.ignore_this_data) { debugLog('convertProperty: added') diff --git a/output/my_converted_data_set.json b/output/my_converted_data_set.json index 505ed86..ee3535c 100644 --- a/output/my_converted_data_set.json +++ b/output/my_converted_data_set.json @@ -1,798 +1,6 @@ { "type": "FeatureCollection", "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904154, - 45.748005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.063407, - 44.854019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.063407, - 44.854019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.063407, - 44.854019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8863, - 43.984501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8863, - 43.984501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8863, - 43.984501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8863, - 43.984501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8863, - 43.984501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8863, - 43.984501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682919, - 48.082244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.502904, - 47.608214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.463384, - 48.968672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.628969, - 44.880766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.628969, - 44.880766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.628969, - 44.880766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.628969, - 44.880766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682919, - 48.082244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.063407, - 44.854019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, { "type": "Feature", "geometry": { @@ -802,1153163 +10,7 @@ 45.635079 ] }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368521, - 48.938346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368521, - 48.938346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368521, - 48.938346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368521, - 48.938346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356319, - 43.379383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356319, - 43.379383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356319, - 43.379383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356319, - 43.379383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.83571, - 43.567505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.83571, - 43.567505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.83571, - 43.567505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.83571, - 43.567505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.55363, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.55363, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.55363, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.55363, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.682108, - 45.216314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.682108, - 45.216314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.682108, - 45.216314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.682108, - 45.216314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790077, - 45.585027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790077, - 45.585027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790077, - 45.585027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790077, - 45.585027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822159, - 45.635079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682919, - 48.082244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682919, - 48.082244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838681, - 44.11893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238392, - 48.77325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238392, - 48.77325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238392, - 48.77325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238392, - 48.77325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063726, - 45.688196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063726, - 45.688196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063726, - 45.688196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063726, - 45.688196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904154, - 45.748005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904154, - 45.748005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904154, - 45.748005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838681, - 44.11893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838681, - 44.11893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838681, - 44.11893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213822, - 48.891968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682919, - 48.082244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213822, - 48.891968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356176, - 48.979566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356176, - 48.979566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356176, - 48.979566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356176, - 48.979566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.914724, - 48.761402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.914724, - 48.761402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.914724, - 48.761402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.914724, - 48.761402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682919, - 48.082244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.593419, - 47.468511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.593419, - 47.468511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.593419, - 47.468511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.593419, - 47.468511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336357, - 48.75416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336357, - 48.75416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336357, - 48.75416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336357, - 48.75416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07595, - 43.544156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07595, - 43.544156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07595, - 43.544156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07595, - 43.544156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854558, - 45.71459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854558, - 45.71459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854558, - 45.71459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854558, - 45.71459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502617, - 47.481716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502617, - 47.481716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502617, - 47.481716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502617, - 47.481716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859355, - 48.96404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774386, - 45.184057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.106779, - 50.342703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.375103, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.375103, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.375103, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.375103, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.644915, - 44.788386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.644915, - 44.788386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.644915, - 44.788386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.644915, - 44.788386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.106779, - 50.342703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.106779, - 50.342703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.106779, - 50.342703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.587263, - 44.783785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.587263, - 44.783785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.587263, - 44.783785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.587263, - 44.783785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241461, - 48.935171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241461, - 48.935171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241461, - 48.935171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241461, - 48.935171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352437, - 48.89773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352437, - 48.89773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.097416, - 50.644682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.097416, - 50.644682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.097416, - 50.644682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.097416, - 50.644682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43628, - 43.512207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43628, - 43.512207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43628, - 43.512207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43628, - 43.512207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198339, - 48.678843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198339, - 48.678843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198339, - 48.678843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198339, - 48.678843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251933, - 43.425474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251933, - 43.425474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251933, - 43.425474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251933, - 43.425474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475527, - 48.878167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475527, - 48.878167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475527, - 48.878167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475527, - 48.878167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475527, - 48.878167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475527, - 48.878167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14046, - 50.67862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14046, - 50.67862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14046, - 50.67862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14046, - 50.67862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851826, - 47.009538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60135, - 48.87747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.430813, - 48.93979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.430813, - 48.93979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.430813, - 48.93979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.430813, - 48.93979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602809, - 44.790293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602809, - 44.790293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602809, - 44.790293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602809, - 44.790293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60135, - 48.87747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60135, - 48.87747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60135, - 48.87747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35992, - 48.816784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35992, - 48.816784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35992, - 48.816784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35992, - 48.816784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457028, - 48.905736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457028, - 48.905736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457028, - 48.905736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457028, - 48.905736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57864, - 50.515961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004787, - 44.040629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432381, - 43.627319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432381, - 43.627319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432381, - 43.627319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432381, - 43.627319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70466, - 48.83257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70466, - 48.83257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70466, - 48.83257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70466, - 48.83257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.891127, - 43.586799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.891127, - 43.586799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.891127, - 43.586799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.891127, - 43.586799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220567, - 43.217186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774386, - 45.184057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243111, - 43.446899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774386, - 45.184057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774386, - 45.184057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.783111, - 45.785651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.783111, - 45.785651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.783111, - 45.785651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.783111, - 45.785651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.376359, - 43.632098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.896053, - 43.586723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.896053, - 43.586723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691718, - 45.916657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691718, - 45.916657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691718, - 45.916657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691718, - 45.916657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691718, - 45.916657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691718, - 45.916657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.004127, - 44.040485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.913071, - 45.655726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.913071, - 45.655726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.913071, - 45.655726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.913071, - 45.655726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.913071, - 45.655726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.239637, - 47.943807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.239637, - 47.943807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.239637, - 47.943807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.896053, - 43.586723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.896053, - 43.586723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223741, - 49.506783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.239637, - 47.943807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.989333, - 45.957027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876109, - 45.019158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37351, - 48.919733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351056, - 48.752931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351056, - 48.752931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226182, - 48.867245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226182, - 48.867245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226182, - 48.867245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226182, - 48.867245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37351, - 48.919733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37351, - 48.919733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37351, - 48.919733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351056, - 48.752931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.256257, - 43.392152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.696014, - 45.1508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.696014, - 45.1508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.696014, - 45.1508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351056, - 48.752931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.469154, - 46.330655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.474908, - 45.146041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.474908, - 45.146041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.474908, - 45.146041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.474908, - 45.146041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.945414, - 48.757309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.945414, - 48.757309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.945414, - 48.757309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.945414, - 48.757309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216763, - 43.219984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.696014, - 45.1508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226182, - 48.867245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.469154, - 46.330655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343442, - 43.814854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343442, - 43.814854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343442, - 43.814854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343442, - 43.814854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510056, - 47.436268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510056, - 47.436268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510056, - 47.436268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510056, - 47.436268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567111, - 44.890889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181986, - 48.031126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.469154, - 46.330655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44596, - 43.48195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44596, - 43.48195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44596, - 43.48195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44596, - 43.48195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44596, - 43.48195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147748, - 43.057557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498058, - 44.867476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147748, - 43.057557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147748, - 43.057557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147748, - 43.057557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498058, - 44.867476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498058, - 44.867476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498058, - 44.867476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.469154, - 46.330655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865497, - 45.068712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.219944, - 46.183881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.219944, - 46.183881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.219944, - 46.183881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865497, - 45.068712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.219944, - 46.183881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865497, - 45.068712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865497, - 45.068712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.469154, - 46.330655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.807382, - 50.927269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.201663, - 44.641716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*181*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.201663, - 44.641716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*181*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.201663, - 44.641716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*181*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.201663, - 44.641716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*181*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.201663, - 44.641716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*181*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.193047, - 44.658496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*180*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.193047, - 44.658496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*180*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.193047, - 44.658496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*180*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.193047, - 44.658496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*180*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.165259, - 44.659664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*179*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.165259, - 44.659664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*179*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.165259, - 44.659664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*179*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.165259, - 44.659664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*179*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.165259, - 44.659664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*179*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.146988, - 44.656649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*178*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.146988, - 44.656649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*178*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.146988, - 44.656649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*178*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.146988, - 44.656649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*178*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.146988, - 44.656649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*178*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.193047, - 44.658496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "213300098", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ARCACHON", - "ref": "FR*SOD*S*OTHR*180*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255774, - 48.905086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*4*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244976, - 44.944289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*162*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.115768, - 44.639867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*165*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.115768, - 44.639867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*165*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345016, - 44.81952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*164*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345016, - 44.81952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*164*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.128961, - 45.015847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.128961, - 45.015847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244976, - 44.944289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244976, - 44.944289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244976, - 44.944289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*162*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.438853, - 44.85042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*167*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.400987, - 44.708023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.400987, - 44.708023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424664, - 44.914339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*160*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424664, - 44.914339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*160*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424664, - 44.914339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424664, - 44.914339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.135596, - 44.819706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.135596, - 44.819706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050627, - 44.776755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*158*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050627, - 44.776755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*158*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.438853, - 44.85042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*167*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.031351, - 44.878628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.463965, - 44.847856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*168*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369699, - 44.882555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*174*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050627, - 44.776755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*158*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.031351, - 44.878628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.486943, - 44.765249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*177*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.486943, - 44.765249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*177*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.122837, - 45.515089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*176*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.122837, - 45.515089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*176*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.122837, - 45.515089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*176*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.123766, - 45.513463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.123766, - 45.513463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369699, - 44.882555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*174*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.463965, - 44.847856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*168*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369699, - 44.882555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*174*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373517, - 44.692539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*173*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373517, - 44.692539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*173*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342405, - 44.53057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*172*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342405, - 44.53057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*172*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.474491, - 44.812994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*170*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.474491, - 44.812994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*170*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074516, - 44.618461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*169*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074516, - 44.618461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*169*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050627, - 44.776755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*158*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.960185, - 44.627885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*154*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436955, - 45.005005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*157*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.241218, - 44.91774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.241469, - 44.911701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.241469, - 44.911701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23693, - 44.916817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23693, - 44.916817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.243664, - 44.91433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.243664, - 44.91433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603403, - 44.982456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603403, - 44.982456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.095814, - 44.948994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.095814, - 44.948994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26885, - 45.070889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26885, - 45.070889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.855523, - 44.692165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.855523, - 44.692165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.85433, - 44.690495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.85433, - 44.690495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.384012, - 45.067467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.384012, - 45.067467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.542552, - 44.714039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.542552, - 44.714039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.581216, - 44.712681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.581216, - 44.712681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584632, - 44.709854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584632, - 44.709854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.939739, - 44.606319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.939739, - 44.606319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.083541, - 44.650417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.083541, - 44.650417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.126781, - 44.929531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.241218, - 44.91774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.001139, - 44.91209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.033432, - 44.701801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.001139, - 44.91209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.056711, - 44.712387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.343015, - 45.107861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.343015, - 45.107861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498521, - 44.785572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498521, - 44.785572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.770521, - 44.607964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.770521, - 44.607964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.032427, - 45.059238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.032427, - 45.059238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.025833, - 44.632778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.025833, - 44.632778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.021466, - 44.635406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.021466, - 44.635406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.026443, - 44.631077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.026443, - 44.631077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14603, - 44.795773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14603, - 44.795773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*75*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14603, - 44.795773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14603, - 44.795773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*75*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.181364, - 44.749344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.181364, - 44.749344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.245858, - 44.650799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.245858, - 44.650799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601472, - 44.727711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601472, - 44.727711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598145, - 44.727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598145, - 44.727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.097568, - 45.069656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.097568, - 45.069656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.126781, - 44.929531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.747904, - 45.199554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.747904, - 45.199554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.077091, - 44.742752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276985, - 45.030991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.609335, - 45.290096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.609335, - 45.290096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.204426, - 44.9921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.204426, - 44.9921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.156992, - 44.896271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.156992, - 44.896271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.327441, - 44.94614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.327441, - 44.94614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.784099, - 44.809963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.784099, - 44.809963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.780595, - 44.812153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.780595, - 44.812153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.822102, - 45.149315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.822102, - 45.149315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.426206, - 44.916077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436955, - 45.005005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*157*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.056675, - 45.014774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.056675, - 45.014774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478578, - 44.671124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478578, - 44.671124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.000992, - 45.015003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.000992, - 45.015003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.003134, - 45.01342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.003134, - 45.01342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.190544, - 44.876118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.190544, - 44.876118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488382, - 44.429783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488382, - 44.429783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276985, - 45.030991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.023352, - 44.939892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.023352, - 44.939892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.001493, - 44.981499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.077091, - 44.742752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.078747, - 44.820744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.078747, - 44.820744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.064026, - 44.981812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.064026, - 44.981812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.226371, - 44.830223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.226371, - 44.830223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.354772, - 44.650349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.354772, - 44.650349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.423946, - 44.696251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.423946, - 44.696251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074422, - 44.925064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074422, - 44.925064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.001493, - 44.981499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.507449, - 45.130127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488296, - 44.755913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488296, - 44.755913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.126184, - 44.778473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.126184, - 44.778473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.176874, - 45.025108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.176874, - 45.025108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44713, - 45.139946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44713, - 45.139946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.040668, - 45.027435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.040668, - 45.027435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.557763, - 45.248619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.557763, - 45.248619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.507449, - 45.130127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.056711, - 44.712387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.033432, - 44.701801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.443644, - 44.996262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.662261, - 45.129269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.664302, - 45.124519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.560364, - 45.039116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.560364, - 45.039116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624, - 45.251667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624, - 45.251667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.626513, - 45.246693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.626513, - 45.246693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.700727, - 45.284054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.700727, - 45.284054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.529436, - 44.755657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.529436, - 44.755657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030508, - 45.015129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030508, - 45.015129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.654258, - 44.763481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.654258, - 44.763481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.64122, - 44.750343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.64122, - 44.750343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.261004, - 44.292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.261004, - 44.292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.797203, - 45.025738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.797203, - 45.025738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.043266, - 44.852478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.043266, - 44.852478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.042146, - 44.85408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.042146, - 44.85408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389539, - 45.101608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389539, - 45.101608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.684628, - 44.741707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.684628, - 44.741707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.664302, - 45.124519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.662261, - 45.129269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.248891, - 44.553619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.663159, - 45.131039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.449122, - 44.703663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.449122, - 44.703663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.014052, - 44.682381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.014052, - 44.682381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.015976, - 44.683964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.015976, - 44.683964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.138983, - 44.765343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.138983, - 44.765343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.141424, - 44.764664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.141424, - 44.764664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.163121, - 44.663528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.163121, - 44.663528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.172374, - 44.663364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.172374, - 44.663364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16609, - 44.659492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*3*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16609, - 44.659492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*3*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16609, - 44.659492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16609, - 44.659492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098947, - 44.74308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098947, - 44.74308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.106562, - 44.74374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.106562, - 44.74374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.975692, - 44.64143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.975692, - 44.64143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.965542, - 44.637932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.965542, - 44.637932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.965469, - 44.639351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.965469, - 44.639351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.663159, - 45.131039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.701827, - 44.771759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.701827, - 44.771759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.408791, - 45.075554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.408791, - 45.075554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.035621, - 44.584213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.035621, - 44.584213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.034757, - 44.582245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.034757, - 44.582245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150912, - 44.63129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150912, - 44.63129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.202032, - 44.632652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.202032, - 44.632652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.207559, - 44.606632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.207559, - 44.606632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.152655, - 44.537663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.152655, - 44.537663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.144855, - 44.638229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.144855, - 44.638229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.148236, - 44.631668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.148236, - 44.631668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.195334, - 45.001762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.195334, - 45.001762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074968, - 44.977234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074968, - 44.977234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41494, - 44.567455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41494, - 44.567455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.400897, - 44.708164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.400897, - 44.708164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.245125, - 44.553131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.245125, - 44.553131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.248037, - 44.555328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.248037, - 44.555328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.248891, - 44.553619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.037012, - 44.581619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.037012, - 44.581619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.531089, - 44.679783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.041403, - 44.39061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.573481, - 45.224117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.573481, - 45.224117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.445306, - 44.824787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.445306, - 44.824787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.007033, - 44.945431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.007033, - 44.945431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.271769, - 44.924076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.271769, - 44.924076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.274073, - 44.992256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.274073, - 44.992256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.022342, - 44.992886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.022342, - 44.992886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.041403, - 44.39061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.185352, - 45.040447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.531089, - 44.679783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.185352, - 45.040447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0602, - 44.63863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0602, - 44.63863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.071506, - 44.635715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.071506, - 44.635715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0694, - 44.640648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0694, - 44.640648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.069077, - 44.64072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.069077, - 44.64072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.068484, - 44.640541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.068484, - 44.640541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.361701, - 44.91988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.361701, - 44.91988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.443644, - 44.996262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.426206, - 44.916077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.430289, - 44.992447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.124493, - 44.618902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*153*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601418, - 45.190145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*151*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601418, - 45.190145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*151*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244545, - 44.946975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*152*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244545, - 44.946975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*152*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244545, - 44.946975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*152*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244545, - 44.946975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*152*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.124493, - 44.618902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*153*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316924, - 44.897648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.124493, - 44.618902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*153*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.124493, - 44.618902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*153*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.960185, - 44.627885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*154*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.960185, - 44.627885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*154*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826756, - 44.664279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*155*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826756, - 44.664279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*155*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601418, - 45.190145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*151*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316924, - 44.897648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569409, - 45.29116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*156*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.083812, - 44.692291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.430289, - 44.992447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.867027, - 44.550583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.867027, - 44.550583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.088728, - 44.694389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.088728, - 44.694389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.083812, - 44.692291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15, - 45.484943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260849, - 44.55788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15, - 45.484943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.126126, - 45.514442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.126126, - 45.514442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.265181, - 44.734566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.265181, - 44.734566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260849, - 44.55788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826756, - 44.664279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*155*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601418, - 45.190145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*151*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569409, - 45.29116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*156*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.485241, - 44.907875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.031379, - 44.914112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.031379, - 44.914112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.063501, - 44.898205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.063501, - 44.898205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.473356, - 44.908749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.485241, - 44.907875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.473999, - 44.904659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.410028, - 45.139877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.473999, - 44.904659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06199, - 44.879169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06199, - 44.879169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.014856, - 45.079998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.014856, - 45.079998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569409, - 45.29116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*156*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.410028, - 45.139877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.473356, - 44.908749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392749, - 45.140446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396709, - 44.842957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436955, - 45.005005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*157*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436955, - 45.005005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*157*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569409, - 45.29116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*156*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396709, - 44.842957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392749, - 45.140446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "253303473", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEEG 33", - "ref": "FR*SOD*S*MB33*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.365344, - 48.732587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*222*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888315, - 44.966278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*223*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.365344, - 48.732587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*222*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.365344, - 48.732587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*222*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888315, - 44.966278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*223*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.365344, - 48.732587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*222*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888315, - 44.966278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*223*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888315, - 44.966278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "FLEX-E", - "ref": "FR*SOD*S*OAZS*223*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.351954, - 45.972849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*16*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.060593, - 45.64539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*18*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.060593, - 45.64539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*18*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.392039, - 46.183592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*19*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.060593, - 45.64539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*18*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568038, - 45.480921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*17*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568038, - 45.480921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*17*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568038, - 45.480921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*17*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064226, - 46.188736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*15*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.351954, - 45.972849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*16*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.351954, - 45.972849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*16*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064226, - 46.188736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*15*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064226, - 46.188736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*15*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.367359, - 46.200984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*14*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.367359, - 46.200984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*14*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.392039, - 46.183592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*19*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.392039, - 46.183592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*19*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303649, - 45.527902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*25*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050769, - 45.62793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*20*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050769, - 45.62793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*20*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569505, - 45.373002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*13*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303649, - 45.527902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*25*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678903, - 45.568583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*24*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678903, - 45.568583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*24*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678903, - 45.568583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*24*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.013245, - 45.157408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*23*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.013245, - 45.157408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*23*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.013245, - 45.157408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*23*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.30677, - 45.941801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*22*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.30677, - 45.941801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*22*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.30677, - 45.941801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*22*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31735, - 45.869989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*21*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31735, - 45.869989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*21*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31735, - 45.869989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*21*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.050769, - 45.62793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*20*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.367359, - 46.200984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*14*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.925464, - 45.676244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*1*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569505, - 45.373002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*13*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116179, - 46.185988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*7*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.276077, - 46.159822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*6*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.276077, - 46.159822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*6*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548559, - 45.577977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*5*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548559, - 45.577977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*5*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548559, - 45.577977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*5*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.663373, - 45.747971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.961041, - 45.870702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*3*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.961041, - 45.870702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*3*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.961041, - 45.870702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*3*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.752427, - 46.104744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*2*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.752427, - 46.104744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*2*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.752427, - 46.104744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*2*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838119, - 45.8611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*26*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.925464, - 45.676244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*1*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.925464, - 45.676244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*1*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.276077, - 46.159822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*6*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116179, - 46.185988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*7*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569505, - 45.373002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*13*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116179, - 46.185988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*7*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.892793, - 45.943879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*12*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.892793, - 45.943879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*12*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.892793, - 45.943879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*12*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.029349, - 45.624614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*11*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.029349, - 45.624614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*11*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.029349, - 45.624614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*11*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094403, - 46.152379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*10*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094403, - 46.152379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*10*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094403, - 46.152379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*10*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.265068, - 45.91099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*9*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.265068, - 45.91099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*9*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.265068, - 45.91099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*9*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.517812, - 45.94568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*8*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.517812, - 45.94568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*8*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.517812, - 45.94568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*8*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838119, - 45.8611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*26*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303649, - 45.527902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*25*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838119, - 45.8611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*26*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.378539, - 46.027521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*60*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.929732, - 45.666839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.929732, - 45.666839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01114, - 45.67263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*56*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01114, - 45.67263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*56*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01114, - 45.67263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*56*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.33143, - 46.19102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*55*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.33143, - 46.19102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*55*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.33143, - 46.19102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*55*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.06977, - 46.14952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*54*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.06977, - 46.14952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*54*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.06977, - 46.14952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*54*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.018217, - 45.62523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*53*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.018217, - 45.62523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*53*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.018217, - 45.62523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*53*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.033112, - 45.620421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*52*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.033112, - 45.620421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*52*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.033112, - 45.620421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*52*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.955017, - 45.898288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*27*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.779485, - 45.700818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*51*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.779485, - 45.700818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*51*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.779485, - 45.700818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*51*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.505448, - 45.817534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*50*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.505448, - 45.817534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*50*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.505448, - 45.817534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*50*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.496067, - 45.764361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*49*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.496067, - 45.764361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*49*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422257, - 45.774072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*48*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.378539, - 46.027521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*60*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.991936, - 45.603029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*61*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422257, - 45.774072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*48*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.991936, - 45.603029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*61*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.272743, - 45.243324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*74*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.272743, - 45.243324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*74*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.272743, - 45.243324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*74*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.906058, - 45.536148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*73*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.906058, - 45.536148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*73*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.834953, - 45.582125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*72*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.834953, - 45.582125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*72*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.008851, - 46.128313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.008851, - 46.128313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.004244, - 46.127379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.004244, - 46.127379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.403964, - 45.312323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.403964, - 45.312323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238763, - 45.294596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*68*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238763, - 45.294596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*68*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.422367, - 46.195531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*67*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.422367, - 46.195531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*67*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.542199, - 46.22903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*66*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.542199, - 46.22903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*66*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.944979, - 45.726395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*65*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.944979, - 45.726395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*65*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.209274, - 45.844284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*64*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.209274, - 45.844284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*64*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.187188, - 45.216866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*63*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.187188, - 45.216866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*63*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.001935, - 45.60287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*62*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.001935, - 45.60287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*62*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422257, - 45.774072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*48*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.496067, - 45.764361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*49*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962153, - 45.94209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*47*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345935, - 46.019559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*33*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.096399, - 46.300894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*37*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.096399, - 46.300894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*37*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962153, - 45.94209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*47*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.079027, - 46.08067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*36*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.079027, - 46.08067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*36*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.813299, - 45.740856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*35*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.813299, - 45.740856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*35*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.813299, - 45.740856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*35*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.142896, - 45.768927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*34*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.142896, - 45.768927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*34*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.142896, - 45.768927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*34*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345935, - 46.019559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*33*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345935, - 46.019559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*33*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678354, - 45.876197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*32*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432498, - 46.224022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*38*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678354, - 45.876197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*32*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678354, - 45.876197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*32*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.188403, - 46.193318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*31*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.188403, - 46.193318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*31*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.188403, - 46.193318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*31*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.194709, - 45.886536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*30*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.194709, - 45.886536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*30*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.194709, - 45.886536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*30*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.178706, - 45.691602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*28*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.178706, - 45.691602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*28*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.178706, - 45.691602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*28*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.955017, - 45.898288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*27*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.955017, - 45.898288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*27*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.096399, - 46.300894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*37*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.079027, - 46.08067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*36*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432498, - 46.224022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*38*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406388, - 45.284856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*43*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962153, - 45.94209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*47*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.529733, - 45.948627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*46*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.529733, - 45.948627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*46*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.529733, - 45.948627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*46*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510211, - 45.940547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*45*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510211, - 45.940547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*45*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510211, - 45.940547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*45*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.556037, - 45.717543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*44*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.556037, - 45.717543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*44*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432498, - 46.224022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*38*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.556037, - 45.717543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*44*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406388, - 45.284856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*43*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406388, - 45.284856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*43*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.96002, - 45.944355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*42*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.958623, - 45.934373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*41*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.317532, - 46.155851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*39*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.317532, - 46.155851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*39*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.317532, - 46.155851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*39*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.936192, - 46.114931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*40*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.936192, - 46.114931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*40*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.936192, - 46.114931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*40*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.958623, - 45.934373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*41*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.958623, - 45.934373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*41*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.96002, - 45.944355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*42*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.96002, - 45.944355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251702197", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEER 17", - "ref": "FR*SOD*S*MB17*42*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313813, - 48.919804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.642232, - 48.974569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*178*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313813, - 48.919804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313813, - 48.919804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313813, - 48.919804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288179, - 49.003723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.637631, - 48.873611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*176*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.637631, - 48.873611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*176*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216118, - 48.751964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.612309, - 48.98021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*179*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216118, - 48.751964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.642232, - 48.974569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*178*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.612309, - 48.98021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*179*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213168, - 48.821562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213168, - 48.821562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456492, - 48.808336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456492, - 48.808336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265278, - 48.819562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265278, - 48.819562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326942, - 48.762217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220406, - 48.85466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288179, - 49.003723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220406, - 48.85466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326942, - 48.762217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247755, - 48.816826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*45*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247755, - 48.816826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*45*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237223, - 48.844739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*46*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237223, - 48.844739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*46*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177418, - 48.798292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*47*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177418, - 48.798292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*47*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237767, - 48.850211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*48*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237767, - 48.850211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*48*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222437, - 48.826646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*49*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222437, - 48.826646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*49*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308342, - 48.974918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*51*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308342, - 48.974918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*51*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280009, - 48.816557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280009, - 48.816557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280009, - 48.816557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280009, - 48.816557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280009, - 48.816557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288422, - 48.821077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*52*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288422, - 48.821077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*52*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232979, - 48.642979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*53*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232979, - 48.642979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*53*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.143236, - 48.878289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*68*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.143236, - 48.878289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*68*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.140268, - 48.880798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*69*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.140268, - 48.880798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*69*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.119152, - 48.887603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*70*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.119152, - 48.887603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*70*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230529, - 48.640338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*54*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230529, - 48.640338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*54*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234965, - 48.820297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234965, - 48.820297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427408, - 48.802789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427408, - 48.802789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324704, - 48.73466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324704, - 48.73466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320821, - 49.067314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320821, - 49.067314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307657, - 49.06973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307657, - 49.06973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1413, - 49.0223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*398*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238, - 49.0107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*392*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2484, - 49.0057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*393*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2484, - 49.0057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*393*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25216, - 49.0132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*394*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25216, - 49.0132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*394*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24271, - 49.0197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*395*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24271, - 49.0197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*395*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2424, - 49.0158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*396*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2424, - 49.0158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*396*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16317, - 49.0203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*397*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16317, - 49.0203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*397*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1413, - 49.0223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*398*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15733, - 49.0218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*399*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24591, - 49.0186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*391*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15733, - 49.0218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*399*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1552, - 49.0194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*400*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1552, - 49.0194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*400*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1991, - 48.9966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*401*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1991, - 48.9966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*401*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18857, - 48.9854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*402*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18857, - 48.9854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*402*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1977, - 49.007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*403*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1977, - 49.007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*403*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20313, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*404*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20313, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*404*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23283, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*405*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238, - 49.0107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*392*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24591, - 49.0186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*391*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2633, - 48.9701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*383*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2126, - 49.0271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*377*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2108, - 49.0173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*378*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2108, - 49.0173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*378*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20446, - 49.0115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*379*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20446, - 49.0115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*379*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2249, - 49.0264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*380*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2249, - 49.0264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*380*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221, - 49.0254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*381*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221, - 49.0254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*381*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2215, - 49.0258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*382*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2215, - 49.0258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*382*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2633, - 48.9701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*383*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25721, - 48.9715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*384*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24848, - 49.0193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*390*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25721, - 48.9715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*384*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2661, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*385*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2661, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*385*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24037, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*386*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24037, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*386*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2562, - 48.9761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*387*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2562, - 48.9761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*387*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2423, - 48.9784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*388*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2423, - 48.9784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*388*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2521, - 49.0236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*389*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2521, - 49.0236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*389*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24848, - 49.0193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*390*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23283, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*405*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23634, - 49.0019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*406*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23634, - 49.0019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*406*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227086, - 48.787468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*31*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227086, - 48.787468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*31*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227086, - 48.787468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*31*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227086, - 48.787468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*31*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227086, - 48.787468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*31*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227086, - 48.787468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*31*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2444, - 48.9976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*407*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218229, - 49.038771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*416*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234801, - 48.807732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*30*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234801, - 48.807732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*30*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234801, - 48.807732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*30*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234801, - 48.807732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*30*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2444, - 48.9976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*407*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22748, - 48.9843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*408*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22748, - 48.9843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*408*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218401, - 49.112389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*409*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218401, - 49.112389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*409*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216531, - 49.111305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*410*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216531, - 49.111305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*410*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542078, - 48.701192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*411*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542078, - 48.701192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*411*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181177, - 48.905838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*412*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181177, - 48.905838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*412*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256419, - 48.921798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*413*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256419, - 48.921798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*413*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252769, - 48.922914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*414*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252769, - 48.922914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*414*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4336, - 48.80911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*415*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.189425, - 48.82634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17596, - 48.90592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17596, - 48.90592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237844, - 48.812485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*29*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237844, - 48.812485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*29*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237844, - 48.812485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*29*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237844, - 48.812485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*29*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234801, - 48.807732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*30*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234801, - 48.807732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*30*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23112, - 49.0211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*376*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54441, - 48.922985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*118*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.512814, - 48.892332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.508051, - 48.902835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.508051, - 48.902835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51808, - 48.909806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*121*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51808, - 48.909806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*121*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339881, - 49.033346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*122*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339881, - 49.033346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*122*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299287, - 48.810455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*123*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299287, - 48.810455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*123*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298238, - 48.806568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*124*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298238, - 48.806568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*124*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.604149, - 48.916773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.604149, - 48.916773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.512814, - 48.892332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513482, - 48.894296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513482, - 48.894296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240595, - 48.80806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240595, - 48.80806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227715, - 48.787877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227715, - 48.787877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179013, - 48.909418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*427*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4336, - 48.80911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*415*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212137, - 49.111643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*430*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212137, - 49.111643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*430*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217951, - 49.121776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*429*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217951, - 49.121776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*429*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179013, - 48.909418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*427*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179001, - 49.069632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*426*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179001, - 49.069632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*426*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207922, - 49.078548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*425*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207922, - 49.078548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*425*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252206, - 49.054005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*424*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252206, - 49.054005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*424*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284516, - 49.115166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*421*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284516, - 49.115166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*421*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209352, - 49.11376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*420*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209352, - 49.11376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*420*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.502954, - 49.059232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*419*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.934912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.441778, - 48.804958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*151*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290551, - 48.821902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290551, - 48.821902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36695, - 49.087523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36695, - 49.087523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.155149, - 48.885583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*147*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.155149, - 48.885583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*147*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.604141, - 48.918367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.604141, - 48.918367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.629187, - 48.869505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.629187, - 48.869505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.157368, - 48.889452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*150*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.157368, - 48.889452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*150*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.441778, - 48.804958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*151*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54441, - 48.922985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*118*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.536884, - 48.919073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*117*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304623, - 48.904369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304623, - 48.904369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304623, - 48.904369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304623, - 48.904369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304623, - 48.904369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309161, - 48.909744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*86*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309161, - 48.909744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*86*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309161, - 48.909744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*86*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309161, - 48.909744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*86*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2987, - 48.901286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2987, - 48.901286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2987, - 48.901286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2987, - 48.901286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2987, - 48.901286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.536884, - 48.919073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*117*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169532, - 48.76463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169532, - 48.76463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152863, - 48.768693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152863, - 48.768693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.167502, - 48.765481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175402, - 48.762795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175402, - 48.762795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.164531, - 48.77241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.164531, - 48.77241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377945, - 48.99638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.163266, - 48.806434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*102*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.163266, - 48.806434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.524608, - 48.905451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.524608, - 48.905451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517099, - 48.91367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517099, - 48.91367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326929, - 49.027391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326929, - 49.027391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336956, - 49.032846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336956, - 49.032846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380766, - 48.97929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380766, - 48.97929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377945, - 48.99638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218729, - 48.845411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*111*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218729, - 48.845411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*111*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.203739, - 48.842105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*112*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.203739, - 48.842105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*112*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219264, - 48.841715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*113*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219264, - 48.841715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*113*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53094, - 48.7965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*114*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53094, - 48.7965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*114*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156808, - 48.838145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*115*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156808, - 48.838145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*115*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246242, - 48.8288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*116*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246242, - 48.8288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*116*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.163266, - 48.806434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*102*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.163266, - 48.806434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171623, - 48.802012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*101*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171623, - 48.802012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*101*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317644, - 48.902349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*89*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317644, - 48.902349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*89*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317644, - 48.902349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*89*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317644, - 48.902349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*89*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317644, - 48.902349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*89*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310159, - 48.968482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310159, - 48.968482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215126, - 48.857159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215126, - 48.857159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.532549, - 48.801016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.532549, - 48.801016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545659, - 48.799648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545659, - 48.799648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.531936, - 48.798856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.531936, - 48.798856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185283, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185283, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.164518, - 48.840307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.164518, - 48.840307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2126, - 49.0271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*377*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23112, - 49.0211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*376*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37428, - 48.817419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*209*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.471163, - 49.002593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.612862, - 48.953031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*204*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.612862, - 48.953031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*204*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601128, - 48.950792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*205*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601128, - 48.950792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*205*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3851, - 48.81043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3851, - 48.81043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37586, - 48.807196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*207*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37586, - 48.807196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*207*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389021, - 48.812972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*208*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389021, - 48.812972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*208*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37428, - 48.817419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*209*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383546, - 48.980861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*210*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451673, - 49.049662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*202*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383546, - 48.980861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*210*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370779, - 48.976697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370779, - 48.976697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.620085, - 48.940606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*212*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.620085, - 48.940606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*212*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.236634, - 48.883921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.236634, - 48.883921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542244, - 48.729206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*214*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542244, - 48.729206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*214*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287242, - 48.957323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*215*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287242, - 48.957323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*215*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247911, - 48.940484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*216*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.471163, - 49.002593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451673, - 49.049662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*202*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479328, - 49.009207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310958, - 49.041152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310958, - 49.041152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322472, - 49.045307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264582, - 48.743228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1842, - 48.800118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*197*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1842, - 48.800118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*197*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247911, - 48.940484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*216*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239076, - 48.947107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*217*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239076, - 48.947107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*217*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.235762, - 48.873871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*241*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232948, - 48.883089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*234*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549201, - 48.839452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*236*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549201, - 48.839452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*236*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526659, - 48.895792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*237*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526659, - 48.895792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*237*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.243501, - 48.877078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*238*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.243501, - 48.877078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*238*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379583, - 48.816769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*239*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379583, - 48.816769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*239*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.151554, - 48.943852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*240*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.151554, - 48.943852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*240*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.235762, - 48.873871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*241*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.224059, - 48.861252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*242*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257649, - 48.948752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*218*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.224059, - 48.861252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*242*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22766, - 48.87125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*243*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22766, - 48.87125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*243*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321968, - 48.999316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*244*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321968, - 48.999316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*244*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312299, - 48.973415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*245*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312299, - 48.973415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*245*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319999, - 48.988914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*246*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319999, - 48.988914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*246*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284159, - 48.95965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*248*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284159, - 48.95965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*248*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284068, - 48.965992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*249*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232948, - 48.883089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*234*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.444934, - 49.050178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*232*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.444934, - 49.050178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*232*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21486, - 48.754676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*231*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257649, - 48.948752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*218*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227553, - 48.874264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*224*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227553, - 48.874264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*224*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.225601, - 48.868305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*225*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.225601, - 48.868305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*225*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.011658, - 48.803085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*226*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.011658, - 48.803085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*226*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549687, - 48.847681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*227*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549687, - 48.847681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*227*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566347, - 48.829448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*228*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566347, - 48.829448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*228*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353092, - 49.079916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*230*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353092, - 49.079916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*230*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21486, - 48.754676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*231*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479328, - 49.009207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223497, - 48.78506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*193*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317675, - 48.798756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*251*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240082, - 48.839897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210997, - 48.857063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210997, - 48.857063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207391, - 48.847778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207391, - 48.847778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215528, - 48.855042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215528, - 48.855042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207385, - 48.843157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207385, - 48.843157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212253, - 48.859722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212253, - 48.859722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239694, - 48.836639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239694, - 48.836639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240082, - 48.839897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241748, - 48.808116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.192191, - 48.813019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.192191, - 48.813019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188014, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188014, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264953, - 48.82991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264953, - 48.82991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276657, - 48.827045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276657, - 48.827045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.178067, - 48.830567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.178067, - 48.830567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227161, - 48.821484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227161, - 48.821484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.515321, - 49.006211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241748, - 48.808116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223497, - 48.78506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*193*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.518227, - 48.923959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.934912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.929952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.929952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513673, - 48.748812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513673, - 48.748812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169688, - 48.846574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169688, - 48.846574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.064108, - 48.803135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.064108, - 48.803135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.149957, - 48.833635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.149957, - 48.833635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.518227, - 48.923959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23971, - 48.879812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*165*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.059222, - 48.803114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*158*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23971, - 48.879812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*165*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.069517, - 48.799693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*164*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.069517, - 48.799693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*164*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199466, - 48.827906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*163*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199466, - 48.827906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*163*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432908, - 48.797861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432908, - 48.797861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.244992, - 48.880643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.244992, - 48.880643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.245622, - 48.884208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.245622, - 48.884208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.059222, - 48.803114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*158*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20638, - 48.822094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20638, - 48.822094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212834, - 48.824499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212834, - 48.824499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322484, - 48.755884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322484, - 48.755884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329537, - 48.739087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*191*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329537, - 48.739087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*191*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.028097, - 48.799939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*192*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.028097, - 48.799939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*192*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223497, - 48.78506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*193*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223497, - 48.78506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*193*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290181, - 48.82598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290181, - 48.82598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15031, - 48.848957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15031, - 48.848957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.131865, - 48.84512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.131865, - 48.84512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17895, - 48.90953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17895, - 48.90953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177236, - 48.912132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177236, - 48.912132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05212, - 48.80807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05212, - 48.80807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35707, - 48.81287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35707, - 48.81287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.189425, - 48.82634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.515321, - 49.006211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519465, - 49.001676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519465, - 49.001676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284068, - 48.965992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*249*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322472, - 49.045307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317675, - 48.798756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*251*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20896, - 49.0369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*340*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19591, - 49.0134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*334*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1904, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*335*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1904, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*335*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2001, - 48.9835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*336*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2001, - 48.9835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*336*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1996, - 49.0108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*337*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1996, - 49.0108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*337*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19769, - 49.0097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*338*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19769, - 49.0097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*338*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211656, - 49.038018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*339*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211656, - 49.038018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*339*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20896, - 49.0369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*340*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2047, - 49.0408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*341*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1851, - 49.0179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*333*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2047, - 49.0408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*341*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*342*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*342*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27636, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*343*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27636, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*343*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*344*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*344*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*344*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27439, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*345*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27439, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*345*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27439, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*345*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26679, - 48.995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*346*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19591, - 49.0134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*334*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1851, - 49.0179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*333*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478607, - 48.900927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*317*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.340589, - 49.025174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*325*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460008, - 49.029892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*319*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.631761, - 48.882366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*320*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.631761, - 48.882366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*320*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252401, - 48.740984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*321*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252401, - 48.740984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*321*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.516052, - 48.898465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*322*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.516052, - 48.898465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*322*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.357092, - 48.918278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*323*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.357092, - 48.918278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*323*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219674, - 48.755734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*324*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219674, - 48.755734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*324*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.340589, - 49.025174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*325*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338942, - 49.030229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*326*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199478, - 48.976976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*332*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338942, - 49.030229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*326*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309573, - 48.972443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*327*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309573, - 48.972443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*327*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197618, - 48.958165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*328*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197618, - 48.958165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*328*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205439, - 48.976037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*329*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205439, - 48.976037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*329*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209218, - 48.965775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*330*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209218, - 48.965775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*330*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202975, - 48.973692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*331*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202975, - 48.973692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*331*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199478, - 48.976976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*332*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26679, - 48.995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*346*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28509, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*347*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28509, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*347*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.176, - 48.9915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*369*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127156, - 49.004227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*363*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14247, - 49.0004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*364*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14247, - 49.0004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*364*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15787, - 49.0025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*365*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15787, - 49.0025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*365*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12663, - 49.0169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*366*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12663, - 49.0169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*366*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.99 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*367*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.99 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*367*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1449, - 48.998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*368*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1449, - 48.998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*368*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.176, - 48.9915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*369*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.9914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*370*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*349*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.9914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*370*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181, - 48.9796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*371*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181, - 48.9796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*371*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1813, - 48.9621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*372*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1813, - 48.9621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*372*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17747, - 48.9747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*373*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17747, - 48.9747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*373*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29046, - 48.9795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*374*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313771, - 48.795472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*252*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264582, - 48.743228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264582, - 48.743228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264582, - 48.743228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127156, - 49.004227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*363*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206, - 49.0509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*362*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206, - 49.0509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*362*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2277, - 48.9842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*361*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*349*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26261, - 48.9898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*350*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26261, - 48.9898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*350*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25678, - 48.985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*351*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25678, - 48.985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*351*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27183, - 48.9797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*352*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27183, - 48.9797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*352*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26332, - 48.9852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*353*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26332, - 48.9852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*353*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26332, - 48.9852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*353*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25776, - 48.9895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*354*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25776, - 48.9895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*354*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22189, - 48.9986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*355*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22189, - 48.9986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*355*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*356*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*356*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*357*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*357*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*358*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*358*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*359*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*359*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2361, - 48.9843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*360*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2361, - 48.9843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*360*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2277, - 48.9842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*361*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460008, - 49.029892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*319*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29046, - 48.9795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*374*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478607, - 48.900927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*317*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339336, - 48.705907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*279*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188821, - 48.822768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*273*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188821, - 48.822768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*273*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223943, - 48.87384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*274*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223943, - 48.87384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*274*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201931, - 48.863165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*275*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201931, - 48.863165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*275*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238681, - 48.90954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*276*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238681, - 48.90954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*276*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046263, - 48.811175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*277*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046263, - 48.811175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*277*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230882, - 48.950894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*278*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230882, - 48.950894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*278*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339336, - 48.705907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*279*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196674, - 48.82341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*272*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324774, - 48.700535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*280*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324774, - 48.700535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*280*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519994, - 48.902239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*281*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519994, - 48.902239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*281*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322788, - 48.972669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*282*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322788, - 48.972669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*282*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320497, - 48.965586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*283*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320497, - 48.965586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*283*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388748, - 49.006074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*285*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388748, - 49.006074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*285*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229802, - 48.642808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*286*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229802, - 48.642808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*286*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196674, - 48.82341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*272*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468985, - 48.882559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*271*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48729, - 48.873236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*287*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.194656, - 48.822302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*259*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313771, - 48.795472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*252*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.482415, - 48.902376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*316*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250294, - 48.945741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*253*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250294, - 48.945741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*253*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.044941, - 48.811271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*254*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.044941, - 48.811271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*254*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179316, - 48.821396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*255*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179316, - 48.821396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*255*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.184659, - 48.827427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*256*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.184659, - 48.827427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*256*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181596, - 48.827704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*257*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181596, - 48.827704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*257*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.194656, - 48.822302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*259*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468985, - 48.882559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*271*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253396, - 48.915111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*263*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253396, - 48.915111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*263*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279536, - 48.972823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*265*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279536, - 48.972823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*265*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486329, - 48.870292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*266*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486329, - 48.870292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*266*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371545, - 48.812103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*267*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371545, - 48.812103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*267*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399729, - 48.814589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*269*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399729, - 48.814589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*269*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.642961, - 48.866405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*270*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.642961, - 48.866405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*270*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48729, - 48.873236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*287*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.502954, - 49.059232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*419*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413664, - 49.000478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*289*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47388, - 49.031974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*310*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.146948, - 48.944501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*304*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486793, - 48.872049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*305*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486793, - 48.872049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*305*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213465, - 48.86188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*306*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213465, - 48.86188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*306*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484066, - 48.871722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*308*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457298, - 49.02965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*309*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457298, - 49.02965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*309*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47388, - 49.031974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*310*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.141333, - 48.766087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*303*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.640961, - 48.869794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*311*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.640961, - 48.869794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*311*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330149, - 48.760628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*312*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330149, - 48.760628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*312*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.640491, - 48.873308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*313*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.640491, - 48.873308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*313*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.141711, - 48.947895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*314*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.141711, - 48.947895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*314*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484081, - 48.914985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*315*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484081, - 48.914985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*315*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.482415, - 48.902376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*316*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413664, - 49.000478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*289*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.146948, - 48.944501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*304*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484066, - 48.871722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*308*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.141333, - 48.766087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*303*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241634, - 48.832916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*296*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.392918, - 49.004398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*290*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315636, - 48.80169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*302*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.514439, - 49.003741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*291*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.514439, - 49.003741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*291*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325135, - 48.975383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*292*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325135, - 48.975383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*292*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04919, - 48.814008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*293*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04919, - 48.814008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*293*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314644, - 48.965435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*294*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314644, - 48.965435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*294*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324662, - 48.961764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*295*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324662, - 48.961764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*295*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.392918, - 49.004398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*290*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241634, - 48.832916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*296*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351968, - 48.986303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*299*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320078, - 48.792163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*297*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335975, - 48.935119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*301*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335975, - 48.935119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*301*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344589, - 48.989537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*300*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344589, - 48.989537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*300*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351968, - 48.986303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*299*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.150202, - 48.959082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*298*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.150202, - 48.959082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*298*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315636, - 48.80169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*302*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320078, - 48.792163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*297*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.095448, - 44.530308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.690809, - 44.386063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68865, - 44.39468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68865, - 44.39468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.095448, - 44.530308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.611634, - 44.203403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.095533, - 44.530373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.095533, - 44.530373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.542454, - 44.194412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.542454, - 44.194412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.509986, - 44.28891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.690809, - 44.386063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67833, - 44.230488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.509986, - 44.28891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.399167, - 44.249722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.399167, - 44.249722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67833, - 44.230488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.681062, - 44.23138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.681062, - 44.23138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.810305, - 44.384762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.810305, - 44.384762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.806667, - 44.394165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.806667, - 44.394165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.342304, - 44.134995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.516944, - 44.17889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.611634, - 44.203403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.310212, - 44.390133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.516944, - 44.17889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.627324, - 44.205681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.616868, - 44.191933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.451676, - 44.505325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.451676, - 44.505325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.616936, - 44.199535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.616936, - 44.199535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130918, - 44.435215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130918, - 44.435215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.618712, - 44.192516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.618712, - 44.192516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.513095, - 44.225597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.513095, - 44.225597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.627324, - 44.205681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.611923, - 44.203743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.805496, - 44.396168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.805496, - 44.396168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.619786, - 44.206921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.619786, - 44.206921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.586944, - 44.400085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.586944, - 44.400085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.619894, - 44.206848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.619894, - 44.206848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591341, - 44.398441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591341, - 44.398441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.611923, - 44.203743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.342304, - 44.134995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163333, - 44.503887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34265, - 44.134975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.168611, - 44.498611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.169167, - 44.501667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.167222, - 44.496666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.167222, - 44.496666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15449, - 44.507633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15449, - 44.507633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.177198, - 44.500938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.177198, - 44.500938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5974, - 44.190453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5974, - 44.190453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.604511, - 44.192799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.604511, - 44.192799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.606086, - 44.201248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.606086, - 44.201248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.603436, - 44.194824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.603436, - 44.194824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.218302, - 44.409389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.218302, - 44.409389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659898, - 44.132675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659898, - 44.132675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.298611, - 44.179165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.298611, - 44.179165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.459611, - 44.630516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.459611, - 44.630516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.763611, - 44.283054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.763611, - 44.283054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.169167, - 44.501667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.168611, - 44.498611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34265, - 44.134975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163333, - 44.503887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.333498, - 44.13789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.333498, - 44.13789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.335646, - 44.134117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.335646, - 44.134117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.335512, - 44.134357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.335512, - 44.134357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.985842, - 44.480385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.985842, - 44.480385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.943916, - 44.482044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.943916, - 44.482044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.767955, - 44.530869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.767955, - 44.530869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.760762, - 44.527367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.760762, - 44.527367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.609229, - 44.141376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.609229, - 44.141376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.359663, - 44.602715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.359663, - 44.602715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.256566, - 44.056007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.256566, - 44.056007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.261792, - 44.056679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.261792, - 44.056679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.032222, - 44.519165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.032222, - 44.519165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30878, - 44.391033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.310212, - 44.390133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630348, - 44.179935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30878, - 44.391033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.621467, - 44.442345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.274231, - 44.291206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.270507, - 44.286812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.270507, - 44.286812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.552938, - 44.220078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.552938, - 44.220078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.554053, - 44.221779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.554053, - 44.221779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.025985, - 44.447399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.025985, - 44.447399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.378629, - 44.361179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.378629, - 44.361179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.376292, - 44.360611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.376292, - 44.360611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7375, - 44.115276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7375, - 44.115276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591389, - 44.651669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591389, - 44.651669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.493029, - 44.397484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.493029, - 44.397484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088177, - 44.31319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088177, - 44.31319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.090439, - 44.313465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.090439, - 44.313465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.689687, - 44.175274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.689687, - 44.175274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.274231, - 44.291206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.890833, - 44.38361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.890833, - 44.38361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.293672, - 44.455635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.795556, - 44.187102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.795556, - 44.187102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.611846, - 44.204935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.611846, - 44.204935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01301, - 44.5904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01301, - 44.5904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53505, - 44.54946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53505, - 44.54946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.267636, - 44.290688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*109*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.267636, - 44.290688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*109*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.267636, - 44.290688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*109*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.293672, - 44.455635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181111, - 44.675556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.159444, - 44.448612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.159444, - 44.448612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.640469, - 44.245251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.640469, - 44.245251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.644147, - 44.238674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.644147, - 44.238674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.347643, - 44.222729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.347643, - 44.222729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.577217, - 44.16872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.577217, - 44.16872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181111, - 44.675556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.621467, - 44.442345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625405, - 44.442253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.340556, - 44.301109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.299375, - 44.258472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14084, - 44.50922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*72*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62705, - 44.160133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62705, - 44.160133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608545, - 44.170858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*70*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.655556, - 44.170834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.655556, - 44.170834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.216508, - 44.506062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.216508, - 44.506062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.663889, - 44.181389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.663889, - 44.181389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.745556, - 44.638332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.745556, - 44.638332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.670505, - 44.416508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.670505, - 44.416508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.741111, - 44.638332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.741111, - 44.638332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.882228, - 44.277363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.882228, - 44.277363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.706495, - 44.408772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.706495, - 44.408772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.650561, - 44.063637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.650561, - 44.063637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.707673, - 44.405212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.707673, - 44.405212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.340556, - 44.301109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630348, - 44.179935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339443, - 44.295475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*74*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339443, - 44.295475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*74*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07137, - 44.295952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*78*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.299375, - 44.258472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102908, - 44.385929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102908, - 44.385929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.669306, - 44.186966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.669306, - 44.186966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.999401, - 44.40205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*80*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.999401, - 44.40205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*80*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.999401, - 44.40205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*80*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.999401, - 44.40205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*80*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.676419, - 44.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.676419, - 44.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07137, - 44.295952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*78*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339443, - 44.295475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*74*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07137, - 44.295952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*78*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07137, - 44.295952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*78*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656492, - 44.190346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656492, - 44.190346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.624025, - 44.536303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*76*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.624025, - 44.536303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*76*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.624025, - 44.536303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*76*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.624025, - 44.536303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*76*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67219, - 44.18623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67219, - 44.18623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339443, - 44.295475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*74*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625405, - 44.442253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.616868, - 44.191933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254701824", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - TE 47", - "ref": "FR*SOD*S*MB47*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279881, - 48.665501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20761, - 48.73402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267462, - 48.632023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267462, - 48.632023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191479, - 48.703136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191479, - 48.703136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221078, - 48.732231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221078, - 48.732231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.168417, - 48.730614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.168417, - 48.730614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20761, - 48.73402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246326, - 48.714756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226933, - 48.699745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226933, - 48.699745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279881, - 48.665501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294588, - 48.695099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.242334, - 48.661919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.242334, - 48.661919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216673, - 48.673862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216673, - 48.673862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.159423, - 48.696949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.159423, - 48.696949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269996, - 48.657887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269996, - 48.657887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222766, - 48.739605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262753, - 48.626686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262753, - 48.626686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295414, - 48.737225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295414, - 48.737225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.236749, - 48.68372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.236749, - 48.68372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270542, - 48.641041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270542, - 48.641041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.243571, - 48.711727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.243571, - 48.711727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259299, - 48.713703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259299, - 48.713703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268743, - 48.66151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268743, - 48.66151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298674, - 48.675415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298674, - 48.675415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24285, - 48.659538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24285, - 48.659538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.142571, - 48.714664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.233518, - 48.697381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292326, - 48.73232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106596, - 48.700953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106596, - 48.700953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29254, - 48.696736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29254, - 48.696736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273265, - 48.73428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273265, - 48.73428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283376, - 48.730587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283376, - 48.730587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274164, - 48.711114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274164, - 48.711114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291233, - 48.700448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291233, - 48.700448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274077, - 48.708309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274077, - 48.708309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234448, - 48.717192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.234448, - 48.717192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292326, - 48.73232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.233518, - 48.697381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.142571, - 48.714664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.272193, - 48.725075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.261823, - 48.689507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.261823, - 48.689507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276495, - 48.664589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276495, - 48.664589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273306, - 48.644867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273306, - 48.644867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294186, - 48.701866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294186, - 48.701866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259031, - 48.730156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259031, - 48.730156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257871, - 48.735409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257871, - 48.735409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.116799, - 48.687965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.116799, - 48.687965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316214, - 48.684934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316214, - 48.684934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.272193, - 48.725075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222766, - 48.739605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246326, - 48.714756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294588, - 48.695099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.132646, - 48.677479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187464, - 48.698582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293165, - 48.676964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293165, - 48.676964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134818, - 48.701092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134818, - 48.701092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232224, - 48.717692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.132646, - 48.677479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134319, - 48.677201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226447, - 48.741585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226447, - 48.741585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134319, - 48.677201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187464, - 48.698582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.530598, - 47.398424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*247*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189267, - 49.529647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*248*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189267, - 49.529647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*248*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189267, - 49.529647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*248*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.530598, - 47.398424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*247*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.530598, - 47.398424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*247*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.530598, - 47.398424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*247*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.466318, - 49.095829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*245*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.530598, - 47.398424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*247*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.466318, - 49.095829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*245*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189267, - 49.529647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*248*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.466318, - 49.095829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*245*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99055, - 48.625582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*244*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99055, - 48.625582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*244*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189267, - 49.529647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*248*2*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.968916, - 49.534125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*249*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.968916, - 49.534125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*249*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99055, - 48.625582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*244*2*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.550342, - 47.284433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*253*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.550342, - 47.284433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*253*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.550342, - 47.284433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*253*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298284, - 49.163926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*252*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298284, - 49.163926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*252*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298284, - 49.163926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*252*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298284, - 49.163926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*252*2*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298284, - 49.163926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*252*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.917933, - 48.95821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*251*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.917933, - 48.95821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*251*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.917933, - 48.95821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*251*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.654923, - 48.842721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*250*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.654923, - 48.842721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*250*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.654923, - 48.842721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*250*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.968916, - 49.534125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*249*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99055, - 48.625582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*244*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.016885, - 47.403579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*243*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99055, - 48.625582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*244*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08237, - 49.35703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*232*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08258, - 49.36224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*235*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0724, - 49.35691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*234*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0724, - 49.35691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*234*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.082, - 49.36005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*233*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.082, - 49.36005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*233*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08237, - 49.35703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*232*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07346, - 49.3443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*231*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.06664, - 49.3547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*237*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07346, - 49.3443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*231*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07042, - 49.35469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*230*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07042, - 49.35469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*230*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08303, - 49.36278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*229*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08303, - 49.36278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*229*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07665, - 49.36376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*228*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08258, - 49.36224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*235*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.06664, - 49.3547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*237*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.016885, - 47.403579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*243*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519112, - 43.492885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*241*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.016885, - 47.403579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*243*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80384, - 45.76165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*242*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80384, - 45.76165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*242*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519112, - 43.492885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*241*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519112, - 43.492885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*241*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519112, - 43.492885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*241*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519112, - 43.492885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*241*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07448, - 49.362896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*238*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07285, - 49.36195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*240*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07285, - 49.36195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*240*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07285, - 49.36195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*240*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08352, - 49.36012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*239*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08352, - 49.36012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*239*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07448, - 49.362896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*238*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80384, - 45.76165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*242*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21121, - 50.19432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*198*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198934, - 48.991535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*255*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07665, - 49.36376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*228*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.669763, - 46.820196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*103*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14912, - 45.819579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*126*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14912, - 45.819579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*126*3*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14912, - 45.819579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*126*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.566611, - 47.251353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*164*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.566611, - 47.251353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*164*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.566611, - 47.251353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*164*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.643388, - 49.582576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*170*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.643388, - 49.582576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*170*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.643388, - 49.582576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*170*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64417, - 48.828511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*188*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64417, - 48.828511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*188*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64417, - 48.828511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*188*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.976783, - 45.954433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*192*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.976783, - 45.954433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*192*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.669763, - 46.820196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*103*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.098543, - 50.645579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*102*3*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.098543, - 50.645579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*102*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56331, - 48.64879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*23*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.268193, - 45.814212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*14*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.268193, - 45.814212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*14*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.268193, - 45.814212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*14*3*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56331, - 48.64879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*23*3*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56331, - 48.64879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*23*4*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56331, - 48.64879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*23*3*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56331, - 48.64879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*23*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.098543, - 50.645579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*102*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56331, - 48.64879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*23*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59105, - 47.262201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*43*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59105, - 47.262201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*43*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.293566, - 47.759518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*80*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.293566, - 47.759518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*80*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.293566, - 47.759518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*80*3*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.976783, - 45.954433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*192*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.322088, - 46.59909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*194*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.322088, - 46.59909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*194*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9003, - 45.593597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*226*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330305, - 46.590128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*224*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.899208, - 45.59193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*225*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.899208, - 45.59193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*225*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.899208, - 45.59193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*225*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.899208, - 45.59193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*225*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.899208, - 45.59193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*225*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9003, - 45.593597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*226*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330305, - 46.590128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*224*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9003, - 45.593597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*226*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9003, - 45.593597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*226*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9003, - 45.593597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*226*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.495323, - 48.77495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*227*2*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.495323, - 48.77495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*227*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.495323, - 48.77495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*227*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330305, - 46.590128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*224*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330305, - 46.590128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*224*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.322088, - 46.59909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*194*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18295, - 48.027775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*218*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21121, - 50.19432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*198*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21121, - 50.19432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*198*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602749, - 44.786403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*213*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602749, - 44.786403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*213*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5076, - 45.16407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*215*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5076, - 45.16407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*215*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18295, - 48.027775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*218*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330305, - 46.590128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*224*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18295, - 48.027775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*218*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.221395, - 49.120483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*219*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.221395, - 49.120483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*219*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633, - 47.628899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*221*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633, - 47.628899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*221*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633, - 47.628899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*221*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198934, - 48.991535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*255*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198934, - 48.991535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*255*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.573282, - 47.194623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*256*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*2*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59948, - 48.703034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*269*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59948, - 48.703034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*269*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59948, - 48.703034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*269*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*2*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.053254, - 47.704318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*271*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.078485, - 49.075618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*268*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.053254, - 47.704318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*271*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.216076, - 47.974601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*272*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.216076, - 47.974601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*272*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.216076, - 47.974601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*272*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15792, - 47.975755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*273*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15792, - 47.975755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*273*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15792, - 47.975755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*273*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.078485, - 49.075618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*268*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.053254, - 47.704318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*271*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.078485, - 49.075618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*268*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.469031, - 48.427316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*258*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659959, - 47.42451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*267*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.573282, - 47.194623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*256*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.573282, - 47.194623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*256*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.528937, - 48.388316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*257*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.528937, - 48.388316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*257*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.469031, - 48.427316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*258*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.469031, - 48.427316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*258*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.528937, - 48.388316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*257*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91136, - 47.876422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*259*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91136, - 47.876422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*259*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91136, - 47.876422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*259*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206899, - 48.945617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*266*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206899, - 48.945617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*266*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206899, - 48.945617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*266*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659959, - 47.42451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*267*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659959, - 47.42451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*267*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.049525, - 43.709187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*57*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052169, - 43.695694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*56*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052169, - 43.695694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*56*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.049525, - 43.709187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*57*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.049525, - 43.709187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*57*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.972001, - 44.145809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*58*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.049525, - 43.709187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*57*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.972001, - 44.145809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*58*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.972001, - 44.145809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*58*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.972001, - 44.145809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*58*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052169, - 43.695694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*56*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052169, - 43.695694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*56*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.144952, - 43.882175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*53*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.053255, - 43.714935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*55*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.053255, - 43.714935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*55*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.053255, - 43.714935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*55*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.053255, - 43.714935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*55*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041901, - 43.711033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*54*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041901, - 43.711033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*54*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041901, - 43.711033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*54*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041901, - 43.711033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*54*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.144952, - 43.882175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*53*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.144952, - 43.882175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*53*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924396, - 44.03067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*59*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924396, - 44.03067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*59*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.224409, - 43.640213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*64*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924396, - 44.03067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*59*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592122, - 43.657413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*62*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.425559, - 43.595455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*65*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.425559, - 43.595455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*65*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.224409, - 43.640213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*64*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.224409, - 43.640213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*64*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.224409, - 43.640213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*64*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432253, - 43.645058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*52*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.927685, - 43.702885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*63*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.927685, - 43.702885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*63*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.927685, - 43.702885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*63*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.927685, - 43.702885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*63*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592122, - 43.657413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*62*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924396, - 44.03067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*59*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592122, - 43.657413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*62*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592122, - 43.657413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*62*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.928073, - 43.571198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*61*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.928073, - 43.571198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*61*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.928073, - 43.571198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*61*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.928073, - 43.571198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*61*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42846, - 43.773663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*60*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42846, - 43.773663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*60*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42846, - 43.773663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*60*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42846, - 43.773663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*60*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.144952, - 43.882175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*53*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.410125, - 43.788254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432253, - 43.645058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*52*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.306919, - 43.662987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.442726, - 43.661537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430495, - 43.708202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430495, - 43.708202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.312809, - 43.610508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.312809, - 43.610508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.077171, - 44.480804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.077171, - 44.480804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.487642, - 43.634613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.487642, - 43.634613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.306919, - 43.662987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.519344, - 43.881813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.581232, - 44.322952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.519344, - 43.881813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052639, - 43.725822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052639, - 43.725822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.044376, - 43.726215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.044376, - 43.726215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.227091, - 44.063213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.227091, - 44.063213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.233307, - 43.708225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.233307, - 43.708225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.320547, - 44.034054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.442726, - 43.661537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.581232, - 44.322952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432253, - 43.645058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*52*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.396896, - 43.631031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*49*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432253, - 43.645058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*52*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.250123, - 44.445004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*51*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.250123, - 44.445004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*51*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.250123, - 44.445004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*51*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.250123, - 44.445004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*51*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.501203, - 43.828957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*50*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.501203, - 43.828957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*50*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.501203, - 43.828957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*50*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.501203, - 43.828957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*50*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.396896, - 43.631031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*49*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.396896, - 43.631031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*49*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32592, - 43.751686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.396896, - 43.631031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*49*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.302908, - 43.891857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.302908, - 43.891857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.410125, - 43.788254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.946732, - 44.327576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*91*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.402247, - 43.786724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.402247, - 43.786724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.491811, - 43.545513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.491811, - 43.545513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32592, - 43.751686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.946732, - 44.327576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*91*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.237678, - 43.556313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*86*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.946732, - 44.327576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*91*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.330115, - 43.692356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*90*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.446481, - 43.562065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*72*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.446481, - 43.562065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*72*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.446481, - 43.562065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*72*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.072901, - 44.353287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*73*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.072901, - 44.353287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*73*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.072901, - 44.353287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*73*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.072901, - 44.353287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*73*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.922969, - 43.787643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*74*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.922969, - 43.787643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*74*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.922969, - 43.787643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*74*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.922969, - 43.787643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*74*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.449683, - 43.916889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*75*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.449683, - 43.916889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*75*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.449683, - 43.916889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*75*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.449683, - 43.916889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*75*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.228767, - 43.688267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*76*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.228767, - 43.688267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*76*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.228767, - 43.688267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*76*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.228767, - 43.688267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*76*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232223, - 43.980003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*77*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232223, - 43.980003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*77*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232223, - 43.980003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*77*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232223, - 43.980003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*77*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.446481, - 43.562065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*72*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.008743, - 43.69286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*71*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.008743, - 43.69286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*71*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.227322, - 44.202587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*68*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.425559, - 43.595455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*65*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303443, - 43.876064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*66*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303443, - 43.876064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*66*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303443, - 43.876064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*66*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303443, - 43.876064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*66*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.213377, - 43.77866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*67*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.213377, - 43.77866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*67*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.213377, - 43.77866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*67*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.213377, - 43.77866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*67*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.227322, - 44.202587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*68*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.227322, - 44.202587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*68*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.008743, - 43.69286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*71*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.227322, - 44.202587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*68*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.359458, - 43.849495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*69*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.359458, - 43.849495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*69*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.359458, - 43.849495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*69*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.359458, - 43.849495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*69*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.503016, - 43.884914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*70*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.503016, - 43.884914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*70*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.503016, - 43.884914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*70*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.503016, - 43.884914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*70*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.008743, - 43.69286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*71*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.125996, - 43.613544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*78*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.125996, - 43.613544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*78*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.125996, - 43.613544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*78*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390726, - 43.670666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*87*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.314985, - 43.661247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*85*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.314985, - 43.661247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*85*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.314985, - 43.661247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*85*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.237678, - 43.556313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*86*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.237678, - 43.556313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*86*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.918238, - 43.919731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.237678, - 43.556313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*86*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390726, - 43.670666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*87*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390726, - 43.670666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*87*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390726, - 43.670666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*87*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.328835, - 43.75444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*88*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.572845, - 43.760368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*84*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.328835, - 43.75444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*88*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.328835, - 43.75444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*88*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.328835, - 43.75444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*88*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.814181, - 43.835133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*89*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.814181, - 43.835133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*89*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.814181, - 43.835133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*89*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.814181, - 43.835133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*89*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.330115, - 43.692356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*90*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.330115, - 43.692356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*90*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.330115, - 43.692356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*90*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.314985, - 43.661247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*85*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.572845, - 43.760368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*84*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.125996, - 43.613544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*78*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064402, - 43.727768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*81*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386023, - 43.541794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*79*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386023, - 43.541794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*79*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386023, - 43.541794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*79*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386023, - 43.541794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*79*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.641041, - 43.928139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*80*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.641041, - 43.928139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*80*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.641041, - 43.928139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*80*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.641041, - 43.928139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*80*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064402, - 43.727768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*81*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064402, - 43.727768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*81*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064402, - 43.727768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*81*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.572845, - 43.760368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*84*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052096, - 43.723057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*82*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052096, - 43.723057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*82*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962171, - 44.3279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*92*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052096, - 43.723057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*82*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.052096, - 43.723057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*82*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.591106, - 43.864971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*83*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.591106, - 43.864971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*83*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.591106, - 43.864971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*83*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.591106, - 43.864971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*83*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.572845, - 43.760368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*84*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.320547, - 44.034054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.425559, - 43.595455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*65*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.918238, - 43.919731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.985157, - 44.231018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.258727, - 44.03413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.920244, - 44.211601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.920244, - 44.211601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.187404, - 43.968964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.187404, - 43.968964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59247, - 43.652554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59247, - 43.652554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380386, - 43.636551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380386, - 43.636551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.008552, - 43.98666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.008552, - 43.98666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.066157, - 43.698608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.066157, - 43.698608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0557, - 43.713142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0557, - 43.713142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.040466, - 43.707176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.040466, - 43.707176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.055476, - 43.708969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.055476, - 43.708969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.439685, - 43.653248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.439685, - 43.653248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.167335, - 44.395638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.167335, - 44.395638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962171, - 44.3279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*92*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962171, - 44.3279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*92*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.74467, - 43.591513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*93*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.74467, - 43.591513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*93*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.962171, - 44.3279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*92*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99688, - 43.606438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.258727, - 44.03413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.946732, - 44.327576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*91*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.985157, - 44.231018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.833645, - 43.710106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.121237, - 44.241581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99688, - 43.606438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.378626, - 43.814949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.121237, - 44.241581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82855, - 43.628651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.101548, - 43.543797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.101548, - 43.543797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.071594, - 44.34993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.071594, - 44.34993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.749156, - 43.750278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.749156, - 43.750278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.761524, - 44.358582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.761524, - 44.358582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82855, - 43.628651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.833645, - 43.710106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.491801, - 43.896542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.378626, - 43.814949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.292032, - 44.213303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497182, - 43.89362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.385066, - 43.851494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.385066, - 43.851494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.292032, - 44.213303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.491801, - 43.896542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.482222, - 43.89635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.482222, - 43.89635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502202, - 43.886929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502202, - 43.886929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497182, - 43.89362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "254001399", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SYDEC 40", - "ref": "FR*SOD*S*MB40*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630486, - 45.577675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*20*1*_*_", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089774, - 50.122249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*10*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.718141, - 45.914132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*18*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.052789, - 47.322222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*16*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.052789, - 47.322222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*16*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145897, - 47.295589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*15*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145897, - 47.295589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*15*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.159788, - 46.872673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*14*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.498871, - 47.975185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*13*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497206, - 47.977395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*12*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876818, - 45.019791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*4*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800955, - 46.355543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*8*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819599, - 45.631355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*6*2*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.346847, - 48.035643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.346847, - 48.035643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876818, - 45.019791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*4*1*_*_", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865158, - 44.865884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*3*2*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.438933, - 43.868104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*2*2*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889898, - 44.023808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*1*9*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.567375, - 47.244513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.567375, - 47.244513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03745, - 47.504832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "352860639", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA TD", - "ref": "FR*SOD*S*AVTD*7*2*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64467, - 46.56812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.340932, - 46.396202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62974, - 46.563229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*36*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72538, - 46.40226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72538, - 46.40226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*37*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59284, - 46.410831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59284, - 46.410831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*38*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.454083, - 46.483223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.454083, - 46.483223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*39*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.484916, - 46.757252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.484916, - 46.757252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*40*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042778, - 46.466946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*41*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042778, - 46.466946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311, - 46.158501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311, - 46.158501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*42*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.340932, - 46.396202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*44*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09176, - 46.840988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.050749, - 46.562309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.050749, - 46.562309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*45*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.060184, - 46.916531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.060184, - 46.916531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*46*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.233299, - 46.117443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.233299, - 46.117443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*47*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122311, - 46.435253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*48*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122311, - 46.435253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.921262, - 46.551029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.921262, - 46.551029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*49*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.175706, - 46.675926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*50*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.175706, - 46.675926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.427324, - 46.258898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62974, - 46.563229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.79966, - 46.258148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.79966, - 46.258148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*35*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.994391, - 46.435724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4882, - 46.761219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*21*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4882, - 46.761219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185004, - 46.48457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185004, - 46.48457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*22*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.04111, - 46.42062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*23*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.04111, - 46.42062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0177, - 47.063301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0177, - 47.063301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*24*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17276, - 46.81292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17276, - 46.81292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*25*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57314, - 46.115108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57314, - 46.115108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*26*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42395, - 46.439945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*27*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42395, - 46.439945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52613, - 46.275951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52613, - 46.275951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*28*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67396, - 46.230862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*29*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67396, - 46.230862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.228739, - 46.645546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.228739, - 46.645546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*30*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60268, - 46.60733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*31*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60268, - 46.60733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65243, - 46.673271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*32*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65243, - 46.673271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.686995, - 46.189831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*33*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.686995, - 46.189831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.994391, - 46.435724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*34*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.427324, - 46.258898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*51*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.545471, - 46.390884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.545471, - 46.390884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*52*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21484, - 46.424809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16584, - 46.444359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*69*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08266, - 47.010231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08266, - 47.010231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41207, - 46.37738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41207, - 46.37738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08608, - 47.00618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08608, - 47.00618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88642, - 46.694561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88642, - 46.694561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34213, - 46.549568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34213, - 46.549568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18378, - 46.790241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18378, - 46.790241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.33276, - 46.519119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.33276, - 46.519119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29635, - 46.14706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29635, - 46.14706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.306536, - 46.730267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*75*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.306536, - 46.730267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40692, - 46.142899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40692, - 46.142899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5978, - 46.435719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5978, - 46.435719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64467, - 46.56812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18271, - 46.307259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*70*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18271, - 46.307259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09176, - 46.840988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16584, - 46.444359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21484, - 46.424809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31542, - 46.485222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61404, - 46.77956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31542, - 46.485222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*53*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.160335, - 46.701389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.160335, - 46.701389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*54*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09682, - 46.758801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*55*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09682, - 46.758801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22979, - 46.610401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*56*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22979, - 46.610401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*56*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00364, - 46.661129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*57*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61114, - 46.361571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61114, - 46.361571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54894, - 46.818298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54894, - 46.818298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5452, - 46.818611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5452, - 46.818611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66512, - 46.444469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66512, - 46.444469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.51656, - 46.172569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.51656, - 46.172569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31243, - 46.41752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31243, - 46.41752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49724, - 46.5597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49724, - 46.5597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.84278, - 46.67931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35242, - 46.598221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46523, - 46.570751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46523, - 46.570751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61404, - 46.77956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.84278, - 46.67931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.01791, - 46.806728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35242, - 46.598221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.810447, - 46.490733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21306, - 46.91925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.393296, - 46.357182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.393296, - 46.357182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5426, - 46.8363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5426, - 46.8363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.534952, - 46.776592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.534952, - 46.776592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.096326, - 46.71077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.096326, - 46.71077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.705291, - 46.759583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.705291, - 46.759583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26777, - 46.43398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26777, - 46.43398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86389, - 46.56596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86389, - 46.56596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60611, - 46.93734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60611, - 46.93734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.280732, - 46.737652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.280732, - 46.737652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.642613, - 46.565388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.642613, - 46.565388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646528, - 46.573013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646528, - 46.573013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.309254, - 46.735638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.309254, - 46.735638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18175, - 46.64537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18175, - 46.64537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.122411, - 46.422009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.122411, - 46.422009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21306, - 46.91925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.810447, - 46.490733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18065, - 46.78656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37065, - 46.5714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163327, - 46.20657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*155*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311309, - 46.160084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*154*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210527, - 46.920493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210527, - 46.920493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210555, - 46.92054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210555, - 46.92054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.198011, - 46.357932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*151*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30007, - 46.54829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30007, - 46.54829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30007, - 46.54829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*149*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 46.64537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*148*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08608, - 47.00618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*147*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54263, - 46.83623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*146*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197363, - 46.358393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*145*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197363, - 46.358393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*145*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.725185, - 46.402252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*144*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.360187, - 46.661125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.360187, - 46.661125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34631, - 46.61766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*142*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3464, - 46.617687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3464, - 46.617687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371776, - 46.56869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371776, - 46.56869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64476, - 46.56827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*139*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.439859, - 46.731194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*138*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.115935, - 46.429119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*137*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3707, - 46.57145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*136*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.369971, - 46.571165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*135*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37065, - 46.5714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81115, - 46.786449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81115, - 46.786449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53507, - 46.81348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53507, - 46.81348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62647, - 46.80711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62647, - 46.80711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07669, - 46.618771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07669, - 46.618771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65501, - 46.727718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65501, - 46.727718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32491, - 46.31971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32491, - 46.31971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77655, - 46.50507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77655, - 46.50507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.02363, - 47.108528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.02363, - 47.108528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57998, - 46.75684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.01791, - 46.806728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.01987, - 46.880989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.01987, - 46.880989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47077, - 46.22636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47077, - 46.22636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37658, - 46.55698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37658, - 46.55698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87585, - 46.377151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87585, - 46.377151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07623, - 46.66011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07623, - 46.66011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41466, - 46.508591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41466, - 46.508591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18734, - 46.42672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18734, - 46.42672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18065, - 46.78656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40516, - 46.66909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40516, - 46.66909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.043703, - 47.071266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28431, - 46.869717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53227, - 46.813271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53227, - 46.813271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43986, - 46.731178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43986, - 46.731178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197537, - 46.569061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197537, - 46.569061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.112316, - 46.945148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.112316, - 46.945148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*112*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56652, - 46.876129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56652, - 46.876129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.246051, - 46.687889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.246051, - 46.687889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28431, - 46.869717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.869694, - 46.425816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.043703, - 47.071266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.869694, - 46.425816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36394, - 46.655102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36394, - 46.655102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28977, - 46.243118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28977, - 46.243118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30311, - 46.270481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30311, - 46.270481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05509, - 46.35754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05509, - 46.35754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49537, - 46.32872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49537, - 46.32872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.25833, - 46.717381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.25833, - 46.717381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57998, - 46.75684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*20*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00364, - 46.661129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63465, - 46.508862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*19*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.305724, - 46.57666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*5*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26676, - 46.534034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*9*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.369494, - 46.479771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*8*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.369494, - 46.479771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.877009, - 46.43351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*7*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.877009, - 46.43351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.523241, - 46.478479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.523241, - 46.478479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*6*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.413897, - 46.541466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*4*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.114799, - 46.428599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.413897, - 46.541466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311133, - 46.619541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311133, - 46.619541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.350191, - 46.511269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*2*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.350191, - 46.511269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371421, - 46.569134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371421, - 46.569134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*1*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26676, - 46.534034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.305724, - 46.57666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.114799, - 46.428599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*10*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.766259, - 46.738468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.880162, - 46.431427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48267, - 46.76305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48267, - 46.76305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*18*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53584, - 46.77338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*17*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53584, - 46.77338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.569575, - 46.681641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.569575, - 46.681641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*16*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.766259, - 46.738468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*15*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63465, - 46.508862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.165527, - 46.639141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*14*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.165527, - 46.639141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.262716, - 46.425949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.262716, - 46.425949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*13*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.272319, - 46.57058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.272319, - 46.57058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*12*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.880162, - 46.431427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SOREGIES", - "ref": "FR*SOD*S*SORE*11*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.743303, - 45.864479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*186*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.928076, - 45.757096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*191*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.928076, - 45.757096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*191*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.928076, - 45.757096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*191*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858032, - 45.749022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*187*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858032, - 45.749022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*187*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858032, - 45.749022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*187*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858032, - 45.749022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*187*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777584, - 45.581722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*184*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.743303, - 45.864479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*186*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862654, - 45.733704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*185*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862654, - 45.733704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*185*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.928076, - 45.757096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*191*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777584, - 45.581722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*184*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777584, - 45.581722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*184*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777584, - 45.581722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*184*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77209, - 45.837597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77209, - 45.837597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828562, - 45.777419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*116*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87067, - 45.735055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*120*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85112, - 45.766396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*117*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822612, - 45.835806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828562, - 45.777419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*116*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828562, - 45.777419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828562, - 45.777419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*116*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85112, - 45.766396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85112, - 45.766396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*117*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85112, - 45.766396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*117*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84435, - 45.797818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*118*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87067, - 45.735055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*120*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84435, - 45.797818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*118*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84435, - 45.797818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*118*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84435, - 45.797818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*118*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.801467, - 45.756093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*119*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.801467, - 45.756093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*119*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.801467, - 45.756093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*119*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.801467, - 45.756093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*119*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.822612, - 45.835806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76991, - 45.60042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*174*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849126, - 45.832428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*181*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850495, - 45.765502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*172*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875101, - 45.76973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*173*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875101, - 45.76973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*173*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875101, - 45.76973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*173*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875101, - 45.76973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*173*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850495, - 45.765502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*172*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850495, - 45.765502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*172*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850495, - 45.765502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*172*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813275, - 45.757816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*171*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76991, - 45.60042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*174*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813275, - 45.757816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*171*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813275, - 45.757816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*171*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813275, - 45.757816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*171*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887676, - 45.817008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*170*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887676, - 45.817008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*170*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887676, - 45.817008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*170*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887676, - 45.817008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*170*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76991, - 45.60042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*174*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76991, - 45.60042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*174*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849126, - 45.832428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*181*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.923888, - 45.765487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*177*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83123, - 45.744922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*180*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83123, - 45.744922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*180*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844451, - 45.746092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*179*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844451, - 45.746092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*179*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857939, - 45.757145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*178*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857939, - 45.757145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*178*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.923888, - 45.765487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*177*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806765, - 45.770418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*176*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819801, - 45.775426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*115*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806765, - 45.770418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*176*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806765, - 45.770418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*176*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806765, - 45.770418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*176*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872684, - 45.755436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*175*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872684, - 45.755436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*175*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872684, - 45.755436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*175*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872684, - 45.755436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*175*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819801, - 45.775426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*115*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88493, - 45.754568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*111*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819801, - 45.775426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*115*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838031, - 45.752824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*102*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886463, - 45.749462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886463, - 45.749462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*101*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886463, - 45.749462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*101*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886463, - 45.749462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*101*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838031, - 45.752824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*102*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838031, - 45.752824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838031, - 45.752824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*102*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853004, - 45.772218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.835647, - 45.73064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*100*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853004, - 45.772218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*103*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853004, - 45.772218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*103*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853004, - 45.772218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*103*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868093, - 45.752512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*104*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868093, - 45.752512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868093, - 45.752512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*104*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868093, - 45.752512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*104*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.835647, - 45.73064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*100*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.835647, - 45.73064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*100*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.804307, - 45.777167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*105*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798111, - 45.809992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918049, - 45.736845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918049, - 45.736845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*94*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854293, - 45.844635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854293, - 45.844635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799631, - 45.853939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799631, - 45.853939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798111, - 45.809992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904544, - 45.746765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*98*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.835647, - 45.73064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904544, - 45.746765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*98*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904544, - 45.746765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*98*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904544, - 45.746765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*98*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868584, - 45.762465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*99*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868584, - 45.762465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868584, - 45.762465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*99*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868584, - 45.762465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*99*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.804307, - 45.777167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*105*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.804307, - 45.777167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*105*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819801, - 45.775426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797609, - 45.74192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*112*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88827, - 45.774634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88493, - 45.754568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*111*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88493, - 45.754568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88493, - 45.754568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*111*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797609, - 45.74192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*112*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797609, - 45.74192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797609, - 45.74192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*112*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859324, - 45.774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874061, - 45.763164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*110*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859324, - 45.774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*113*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859324, - 45.774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*113*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859324, - 45.774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*113*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845828, - 45.758995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*114*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845828, - 45.758995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845828, - 45.758995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*114*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845828, - 45.758995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*114*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874061, - 45.763164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*110*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874061, - 45.763164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.804307, - 45.777167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896494, - 45.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*107*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84352, - 45.746565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*106*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84352, - 45.746565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84352, - 45.746565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*106*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84352, - 45.746565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*106*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896494, - 45.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896494, - 45.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*107*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896494, - 45.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*107*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861625, - 45.758607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874061, - 45.763164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*110*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861625, - 45.758607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*108*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861625, - 45.758607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*108*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861625, - 45.758607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*108*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88884, - 45.768693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*109*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88884, - 45.768693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*109*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88884, - 45.768693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*109*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88884, - 45.768693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88827, - 45.774634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.830579, - 45.726871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*164*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88827, - 45.774634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*169*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849443, - 45.753338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*132*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86727, - 45.774074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*134*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86727, - 45.774074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*134*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873976, - 45.77919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*133*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873976, - 45.77919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*133*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873976, - 45.77919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*133*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873976, - 45.77919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*133*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849443, - 45.753338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*132*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849443, - 45.753338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*132*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86727, - 45.774074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*134*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849443, - 45.753338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*132*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82456, - 45.746524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*131*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82456, - 45.746524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*131*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82456, - 45.746524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*131*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82456, - 45.746524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*131*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814662, - 45.717164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*130*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814662, - 45.717164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*130*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86727, - 45.774074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*134*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.831712, - 45.864387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814662, - 45.717164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*130*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884058, - 45.804627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815252, - 45.729335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*143*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815252, - 45.729335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*143*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.969977, - 45.72577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*142*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.969977, - 45.72577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*142*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863155, - 45.82162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863155, - 45.82162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884058, - 45.804627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89595, - 45.821754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.831712, - 45.864387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89595, - 45.821754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862851, - 45.880164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862851, - 45.880164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.808221, - 45.727861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.808221, - 45.727861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.820283, - 45.869805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.820283, - 45.869805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814662, - 45.717164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*130*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.909035, - 45.734346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*129*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88827, - 45.774634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*169*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875958, - 45.742985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*122*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.715171, - 45.786008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*124*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.715171, - 45.786008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*124*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.715171, - 45.786008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*124*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814177, - 45.788793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*123*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814177, - 45.788793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*123*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814177, - 45.788793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*123*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.814177, - 45.788793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*123*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875958, - 45.742985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*122*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834249, - 45.781436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875958, - 45.742985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*122*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.875958, - 45.742985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*122*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.860316, - 45.742073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*121*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.860316, - 45.742073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*121*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.860316, - 45.742073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*121*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.860316, - 45.742073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*121*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87067, - 45.735055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*120*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.715171, - 45.786008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*124*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834249, - 45.781436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*125*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.909035, - 45.734346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*129*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827238, - 45.7516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87067, - 45.735055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*120*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.909035, - 45.734346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*129*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.909035, - 45.734346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*129*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849277, - 45.761843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*128*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849277, - 45.761843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*128*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849277, - 45.761843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*128*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849277, - 45.761843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827238, - 45.7516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*127*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834249, - 45.781436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*125*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827238, - 45.7516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*127*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827238, - 45.7516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*127*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81272, - 45.773218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*126*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81272, - 45.773218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*126*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81272, - 45.773218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81272, - 45.773218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*126*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834249, - 45.781436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*125*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.898679, - 45.762188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.898679, - 45.762188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*144*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.898679, - 45.762188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.879203, - 45.782509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*161*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841473, - 45.759943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854351, - 45.763032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*162*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854351, - 45.763032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854351, - 45.763032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*162*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854351, - 45.763032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*162*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.879203, - 45.782509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*161*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.879203, - 45.782509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.879203, - 45.782509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*161*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841473, - 45.759943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*163*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.767208, - 45.751773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.767208, - 45.751773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829716, - 45.688457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*159*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829716, - 45.688457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*159*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888936, - 45.760216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*158*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888936, - 45.760216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*158*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888936, - 45.760216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*158*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841473, - 45.759943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*163*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841473, - 45.759943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*163*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.898679, - 45.762188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*144*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81184, - 45.784265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884842, - 45.737533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*168*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884842, - 45.737533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*168*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884842, - 45.737533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884842, - 45.737533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81184, - 45.784265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*167*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81184, - 45.784265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*167*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81184, - 45.784265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863127, - 45.758517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*166*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.830579, - 45.726871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*164*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863127, - 45.758517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*166*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793958, - 45.793681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*165*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793958, - 45.793681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*165*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793958, - 45.793681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793958, - 45.793681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*165*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.830579, - 45.726871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*164*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.830579, - 45.726871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*164*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888936, - 45.760216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*158*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.881616, - 45.770826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*157*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.881616, - 45.770826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*157*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84524, - 45.862377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*147*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825499, - 45.70403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825499, - 45.70403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.716219, - 45.814521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.716219, - 45.814521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.824257, - 45.67015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.824257, - 45.67015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918049, - 45.736845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84524, - 45.862377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*147*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.881616, - 45.770826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*157*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887705, - 45.730192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*146*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887705, - 45.730192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887705, - 45.730192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*146*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887705, - 45.730192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887876, - 45.730238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*145*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887876, - 45.730238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*145*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887876, - 45.730238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*145*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798611, - 45.747098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*151*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798611, - 45.747098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*151*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803614, - 45.88337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803614, - 45.88337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.881616, - 45.770826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*157*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844746, - 45.835363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*156*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844746, - 45.835363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*156*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844746, - 45.835363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*156*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844746, - 45.835363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*156*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794226, - 45.692455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794226, - 45.692455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*155*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794226, - 45.692455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*155*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794226, - 45.692455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768391, - 45.583926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768391, - 45.583926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768391, - 45.583926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*154*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768391, - 45.583926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*154*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842062, - 45.639385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842062, - 45.639385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918049, - 45.736845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*94*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.969988, - 45.737828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83371, - 45.743645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919312, - 45.726701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*38*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.901374, - 45.705336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*35*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.901374, - 45.705336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*35*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.976542, - 45.772192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*36*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.976542, - 45.772192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*36*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.976542, - 45.772192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*36*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.976542, - 45.772192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*36*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837835, - 45.737199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*37*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837835, - 45.737199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*37*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837835, - 45.737199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*37*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837835, - 45.737199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*37*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919312, - 45.726701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*38*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919312, - 45.726701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*38*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755318, - 45.765054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*41*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919312, - 45.726701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*38*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853851, - 45.725868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*39*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853851, - 45.725868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*39*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853851, - 45.725868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*39*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.853851, - 45.725868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*39*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.003734, - 45.767058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*40*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.003734, - 45.767058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*40*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.003734, - 45.767058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*40*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.003734, - 45.767058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*40*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755318, - 45.765054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*41*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755318, - 45.765054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*41*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.901374, - 45.705336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*35*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.901374, - 45.705336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*35*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.900704, - 45.817578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*34*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.900704, - 45.817578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*34*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.812139, - 45.648403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*28*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.734441, - 45.785288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.734441, - 45.785288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*29*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.734441, - 45.785288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.734441, - 45.785288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*29*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850437, - 45.754512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850437, - 45.754512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*30*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850437, - 45.754512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*30*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850437, - 45.754512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85484, - 45.75291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85484, - 45.75291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85484, - 45.75291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*31*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85484, - 45.75291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*31*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872527, - 45.852635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*32*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872527, - 45.852635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872527, - 45.852635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83371, - 45.743645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*93*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797656, - 45.786609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*33*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797656, - 45.786609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797656, - 45.786609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797656, - 45.786609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*33*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.900704, - 45.817578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.900704, - 45.817578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755318, - 45.765054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*41*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.035817, - 45.770299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*42*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78582, - 45.78257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*55*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765452, - 45.735576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*52*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838506, - 45.877467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*49*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838506, - 45.877467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838506, - 45.877467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*49*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79816, - 45.715749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*50*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79816, - 45.715749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*50*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79816, - 45.715749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79816, - 45.715749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806887, - 45.713032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806887, - 45.713032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*51*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806887, - 45.713032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806887, - 45.713032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*51*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765452, - 45.735576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.035817, - 45.770299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*42*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765452, - 45.735576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765452, - 45.735576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*52*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819514, - 45.755467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819514, - 45.755467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819514, - 45.755467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*53*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819514, - 45.755467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*53*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.778237, - 45.760804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*54*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.778237, - 45.760804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*54*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.778237, - 45.760804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*54*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.778237, - 45.760804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*54*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78582, - 45.78257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*55*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838506, - 45.877467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852093, - 45.737324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852093, - 45.737324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*48*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852093, - 45.737324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*48*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.035817, - 45.770299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*42*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.035817, - 45.770299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*42*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789977, - 45.786734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*43*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789977, - 45.786734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*43*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789977, - 45.786734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*43*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789977, - 45.786734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*43*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888112, - 45.720002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*44*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888112, - 45.720002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*44*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888112, - 45.720002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*44*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.888112, - 45.720002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*44*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850108, - 45.666275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*45*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850108, - 45.666275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*45*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850108, - 45.666275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*45*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850108, - 45.666275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*45*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771318, - 45.816332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*46*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771318, - 45.816332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*46*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771318, - 45.816332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*46*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771318, - 45.816332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*46*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.773797, - 45.738293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*47*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.773797, - 45.738293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*47*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.773797, - 45.738293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*47*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.773797, - 45.738293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*47*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852093, - 45.737324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.812139, - 45.648403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*28*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.812139, - 45.648403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.812139, - 45.648403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872508, - 45.822366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955587, - 45.769151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*8*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955587, - 45.769151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955587, - 45.769151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*8*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.770547, - 45.760144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.770547, - 45.760144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.770547, - 45.760144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*9*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.770547, - 45.760144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*9*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781649, - 45.774545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781649, - 45.774545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781649, - 45.774545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781649, - 45.774545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872508, - 45.822366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872156, - 45.696395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872508, - 45.822366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*11*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872508, - 45.822366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*11*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884666, - 45.696632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*12*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884666, - 45.696632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884666, - 45.696632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884666, - 45.696632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*12*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789628, - 45.609585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789628, - 45.609585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789628, - 45.609585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*13*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789628, - 45.609585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*13*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.878329, - 45.832194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955587, - 45.769151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83156, - 45.84807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*7*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83156, - 45.84807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*7*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83156, - 45.84807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.969988, - 45.737828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.969988, - 45.737828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.795381, - 45.652114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.795381, - 45.652114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*4*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.795381, - 45.652114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.795381, - 45.652114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*4*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919721, - 45.742366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919721, - 45.742366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919721, - 45.742366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919721, - 45.742366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.725522, - 45.746018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*2*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.725522, - 45.746018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.725522, - 45.746018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.725522, - 45.746018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*2*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842099, - 45.817736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842099, - 45.817736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*1*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842099, - 45.817736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*1*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842099, - 45.817736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894663, - 45.664925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894663, - 45.664925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*6*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894663, - 45.664925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*6*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894663, - 45.664925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83156, - 45.84807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.878329, - 45.832194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*14*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.878329, - 45.832194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*14*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.878329, - 45.832194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777065, - 45.913791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863299, - 45.726635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*22*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863299, - 45.726635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863299, - 45.726635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*22*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863299, - 45.726635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.817802, - 45.742484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*23*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.817802, - 45.742484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.817802, - 45.742484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*23*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.817802, - 45.742484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782994, - 45.754439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782994, - 45.754439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782994, - 45.754439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*24*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782994, - 45.754439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*24*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876832, - 45.72893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876832, - 45.72893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876832, - 45.72893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*25*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876832, - 45.72893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*25*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.722615, - 45.758426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.722615, - 45.758426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*26*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.722615, - 45.758426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*26*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.722615, - 45.758426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872156, - 45.696395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*27*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872156, - 45.696395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*27*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872156, - 45.696395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777065, - 45.913791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*21*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777065, - 45.913791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*21*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.048532, - 45.795544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777065, - 45.913791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.048532, - 45.795544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.048532, - 45.795544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*15*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.048532, - 45.795544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*15*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803939, - 45.692093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803939, - 45.692093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*16*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803939, - 45.692093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803939, - 45.692093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*16*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.009728, - 45.767571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*17*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.009728, - 45.767571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.009728, - 45.767571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.009728, - 45.767571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*17*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957743, - 45.664807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957743, - 45.664807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957743, - 45.664807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*18*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957743, - 45.664807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*18*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89177, - 45.697485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89177, - 45.697485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89177, - 45.697485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89177, - 45.697485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834654, - 45.840823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834654, - 45.840823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834654, - 45.840823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*20*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834654, - 45.840823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*20*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78582, - 45.78257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*55*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872527, - 45.852635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*32*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78582, - 45.78257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*55*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84453, - 45.7661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*78*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834116, - 45.78694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*75*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834116, - 45.78694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*75*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845349, - 45.750243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845349, - 45.750243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*76*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845349, - 45.750243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*76*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845349, - 45.750243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*76*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828203, - 45.765606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828203, - 45.765606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*77*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828203, - 45.765606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*77*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828203, - 45.765606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*77*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84453, - 45.7661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*78*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848397, - 45.763361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*81*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84453, - 45.7661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*78*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84453, - 45.7661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842903, - 45.768929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842903, - 45.768929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*79*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842903, - 45.768929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*79*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842903, - 45.768929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*79*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841962, - 45.762921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*80*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841962, - 45.762921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*80*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841962, - 45.762921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*80*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841962, - 45.762921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834116, - 45.78694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834116, - 45.78694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*75*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919892, - 45.777519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*74*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919892, - 45.777519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*74*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852532, - 45.706235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*67*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852532, - 45.706235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*67*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.940114, - 45.692814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*68*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.940114, - 45.692814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*68*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.940114, - 45.692814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*68*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.940114, - 45.692814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*68*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.952119, - 45.69574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*69*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.952119, - 45.69574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.952119, - 45.69574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*69*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.952119, - 45.69574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.800152, - 45.776037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*70*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.800152, - 45.776037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*70*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851272, - 45.745548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*72*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851272, - 45.745548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*72*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851272, - 45.745548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*72*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851272, - 45.745548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863521, - 45.756307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*73*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863521, - 45.756307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*73*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863521, - 45.756307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863521, - 45.756307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*73*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919892, - 45.777519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*74*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848397, - 45.763361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848397, - 45.763361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*81*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.969988, - 45.737828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826636, - 45.731668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*90*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84858, - 45.771588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926708, - 45.718133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*56*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84858, - 45.771588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*88*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84858, - 45.771588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*88*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834451, - 45.754859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*89*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834451, - 45.754859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834451, - 45.754859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*89*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834451, - 45.754859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*89*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826636, - 45.731668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826636, - 45.731668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*90*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826636, - 45.731668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*90*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848397, - 45.763361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*81*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82572, - 45.771705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82572, - 45.771705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*91*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82572, - 45.771705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*91*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82572, - 45.771705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*91*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837599, - 45.769459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837599, - 45.769459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*92*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837599, - 45.769459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*92*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.837599, - 45.769459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*92*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83371, - 45.743645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*93*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83371, - 45.743645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84858, - 45.771588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*88*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836853, - 45.749838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*87*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836853, - 45.749838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*87*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836853, - 45.749838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858266, - 45.767701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*82*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858266, - 45.767701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858266, - 45.767701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*82*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.858266, - 45.767701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*82*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827657, - 45.755746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827657, - 45.755746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*83*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827657, - 45.755746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*83*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827657, - 45.755746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*83*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851691, - 45.757006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*84*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851691, - 45.757006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*84*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851691, - 45.757006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*84*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.851691, - 45.757006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854637, - 45.788587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854637, - 45.788587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*85*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854637, - 45.788587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*85*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854637, - 45.788587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*85*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765806, - 45.784019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765806, - 45.784019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*86*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765806, - 45.784019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*86*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765806, - 45.784019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*86*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836853, - 45.749838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*87*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852532, - 45.706235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*67*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.919892, - 45.777519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852532, - 45.706235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*67*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.855184, - 45.694556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*60*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859705, - 45.779157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*62*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859705, - 45.779157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*62*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.760909, - 45.8205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*63*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957432, - 45.679845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*64*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957432, - 45.679845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*64*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.936937, - 45.74728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*65*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.936937, - 45.74728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*65*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849492, - 45.794353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849492, - 45.794353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849492, - 45.794353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*61*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849492, - 45.794353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*61*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.855184, - 45.694556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*60*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.760909, - 45.8205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*63*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.855184, - 45.694556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949094, - 45.69125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*57*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.855184, - 45.694556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926708, - 45.718133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*56*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926708, - 45.718133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*56*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949094, - 45.69125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*57*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949094, - 45.69125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926708, - 45.718133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*56*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949094, - 45.69125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.928949, - 45.78576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986585, - 45.771356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*59*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986585, - 45.771356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*59*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.928949, - 45.78576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND LYON", - "ref": "FR*SOD*S*LYON*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816392, - 45.740684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*12*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*14*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*14*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*13*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*13*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816392, - 45.740684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*12*10*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816392, - 45.740684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*12*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816392, - 45.740684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*12*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816392, - 45.740684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*12*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816392, - 45.740684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*12*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816054, - 45.740844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*11*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*17*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221231, - 48.779686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547032, - 48.616655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*18*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67655, - 48.082588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*4*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*4*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*4*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*4*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*4*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67655, - 48.082588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67655, - 48.082588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67655, - 48.082588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.678767, - 48.082481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*2*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*1*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*1*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*1*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*1*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.127841, - 43.663607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*1*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*9*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*11*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856448, - 45.762271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*9*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*9*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.118916, - 48.827492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*5*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856386, - 45.761895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*8*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*13*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*11*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*14*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*12*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*11*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*14*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*12*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114096, - 48.828905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*6*13*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*10*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*13*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*15*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*10*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*13*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322007, - 48.838574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*32*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*10*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*15*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*17*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*18*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*16*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*13*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*27*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*19*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*36*14*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*18*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*20*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*23*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*25*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*21*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*14*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*10*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*33*13*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*17*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*13*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*14*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*16*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*24*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*15*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*34*18*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*19*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*15*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*22*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*28*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*31*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*24*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*24*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*25*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*25*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050151, - 47.35747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049248, - 47.355949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049248, - 47.355949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*26*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049248, - 47.355949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049248, - 47.355949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*26*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.130846, - 50.617912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.130846, - 50.617912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171913, - 48.677594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*21*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322582, - 48.837734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*35*26*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220011, - 48.780345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*20*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171913, - 48.677594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171913, - 48.677594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*21*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171913, - 48.677594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.128357, - 50.617613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*9*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*9*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*11*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218646, - 48.780477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*27*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.346176, - 48.861996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*29*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.346176, - 48.861996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*29*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.346176, - 48.861996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.346176, - 48.861996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*29*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*11*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815993, - 45.74089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*18*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*10*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*9*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*20*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*6*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*5*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*13*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*13*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*14*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*19*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*20*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*15*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*8*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*3*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*4*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*12*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*12*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*17*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*10*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*7*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*16*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*14*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*4*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*16*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*6*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*9*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*8*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*4*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*9*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*5*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*7*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*11*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*18*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*15*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*3*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*11*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*17*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*19*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34537, - 46.033722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.330306, - 45.875523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.330306, - 45.875523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34537, - 46.033722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.957497, - 45.77086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.494731, - 45.615384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.046631, - 45.991007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27651, - 46.134059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.494731, - 45.615384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.480057, - 46.048822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167078, - 46.214915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167078, - 46.214915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.204664, - 45.778378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.204664, - 45.778378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.274174, - 46.134473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.480057, - 46.048822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431829, - 45.749293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27651, - 46.134059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081701, - 46.131688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*30*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.274174, - 46.134473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035591, - 45.895108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*32*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.371627, - 46.107802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*39*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.957497, - 45.77086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*34*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171203, - 45.959326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*33*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171203, - 45.959326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*33*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171203, - 45.959326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*33*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035591, - 45.895108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*32*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.035591, - 45.895108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*32*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.90363, - 46.235341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919616, - 46.108853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*31*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919616, - 46.108853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*31*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919616, - 46.108853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*31*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.585948, - 45.628803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081701, - 46.131688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*30*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.90363, - 46.235341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431829, - 45.749293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081701, - 46.131688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*30*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.585948, - 45.628803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.369671, - 46.109403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.406172, - 45.953075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.400478, - 45.95831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.400478, - 45.95831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.371627, - 46.107802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*39*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145703, - 45.79672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145703, - 45.79672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.137518, - 45.797558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.137518, - 45.797558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077636, - 46.217588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077636, - 46.217588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605933, - 45.713124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050832, - 46.120257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.050832, - 46.120257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.298979, - 46.034289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.371627, - 46.107802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*39*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.406172, - 45.953075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605933, - 45.713124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.369671, - 46.109403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.493325, - 45.838198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*14*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.979587, - 45.651697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*15*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.298979, - 46.034289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.202405, - 45.509842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.979587, - 45.651697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*15*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.493325, - 45.838198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*14*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.493325, - 45.838198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*14*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.979587, - 45.651697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*15*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.818752, - 45.82435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032646, - 45.932699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.202405, - 45.509842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.032646, - 45.932699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.205753, - 45.518624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.205753, - 45.518624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.818752, - 45.82435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "258708585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SEHV87", - "ref": "FR*SOD*S*MB87*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.928848, - 44.095253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*149*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12429, - 43.589499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*151*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.952573, - 44.109989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.952573, - 44.109989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.928848, - 44.095253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.928848, - 44.095253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.928848, - 44.095253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*149*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935367, - 44.091897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935367, - 44.091897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935367, - 44.091897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*148*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.802294, - 43.865682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.044712, - 43.623628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*147*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12429, - 43.589499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*151*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.761461, - 44.142858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.802294, - 43.865682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.725537, - 43.848226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.725537, - 43.848226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.853837, - 44.08881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.853837, - 44.08881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.761461, - 44.142858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.854609, - 44.089531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.854609, - 44.089531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.829526, - 43.999862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*158*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.829526, - 43.999862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*158*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.835645, - 44.087471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.835645, - 44.087471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.022008, - 43.560735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.044712, - 43.623628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*147*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.953956, - 43.5519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.022008, - 43.560735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.953956, - 43.5519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.906609, - 44.116352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*9*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.111934, - 43.570758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.111934, - 43.570758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.101737, - 43.571659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.101737, - 43.571659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074897, - 43.618336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*133*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074897, - 43.618336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*133*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.040892, - 43.589903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.040892, - 43.589903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.997921, - 43.583708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03772, - 43.53673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.997921, - 43.583708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.108882, - 43.583317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.108882, - 43.583317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09906, - 43.589162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09906, - 43.589162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.051729, - 43.622951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.051729, - 43.622951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.954077, - 43.597811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.954077, - 43.597811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03597, - 43.5397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03597, - 43.5397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03772, - 43.53673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.906609, - 44.116352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.895762, - 43.955964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81205, - 44.026512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.688753, - 43.455993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*210*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.686872, - 43.453096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.686872, - 43.453096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.683534, - 43.45656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*207*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.683534, - 43.45656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*207*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.686489, - 43.456775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*208*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.686489, - 43.456775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*208*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.688753, - 43.455993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*210*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81205, - 44.026512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.646478, - 43.499395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.646478, - 43.499395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.694257, - 43.341849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*212*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.694257, - 43.341849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*212*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63861, - 43.445696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63861, - 43.445696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.746812, - 43.419192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*204*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.746812, - 43.419192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*204*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.746812, - 43.419192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*204*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.746812, - 43.419192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*204*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.721648, - 43.386678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.721648, - 43.386678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.752546, - 43.427411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*201*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.752546, - 43.427411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*201*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.088415, - 43.576122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*200*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.088415, - 43.576122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*200*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.067345, - 43.597408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*199*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.067345, - 43.597408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*199*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.067558, - 43.564065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*198*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.067558, - 43.564065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*198*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.111563, - 43.571381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*197*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.111563, - 43.571381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*197*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.142079, - 43.641144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.689706, - 43.342153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*214*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.689706, - 43.342153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*214*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.771648, - 43.423766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*215*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.770057, - 43.426121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*223*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04193, - 43.794887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*231*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04193, - 43.794887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*231*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.769688, - 43.426157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*230*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.769688, - 43.426157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*230*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.991493, - 43.573036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*229*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.991493, - 43.573036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*229*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.986055, - 43.598635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*228*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.986055, - 43.598635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*228*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.808597, - 43.416224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*226*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.808597, - 43.416224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*226*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.775273, - 43.429654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*225*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.775273, - 43.429654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*225*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.770335, - 43.425128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*224*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.770335, - 43.425128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*224*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.770057, - 43.426121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*223*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.771648, - 43.423766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*215*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.766603, - 43.424876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*222*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.766603, - 43.424876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*222*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.778844, - 43.414773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*221*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.778844, - 43.414773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*221*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.780578, - 43.413416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*220*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.780578, - 43.413416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*220*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84497, - 43.417625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*219*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84497, - 43.417625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*219*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.857109, - 43.432224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*218*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.857109, - 43.432224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*218*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870301, - 43.431219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*217*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870301, - 43.431219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*217*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.769099, - 43.427591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*216*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.769099, - 43.427591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*216*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.142079, - 43.641144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.815823, - 43.650382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.815823, - 43.650382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.008847, - 43.947858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.082716, - 43.874919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*179*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.091959, - 43.863651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*178*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.091959, - 43.863651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*178*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.031442, - 43.978437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*177*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.031442, - 43.978437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*177*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.964126, - 43.873123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*176*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.964126, - 43.873123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*176*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.914737, - 43.858005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.914737, - 43.858005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.125003, - 43.942747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.125003, - 43.942747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.009405, - 43.948198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.009405, - 43.948198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.008847, - 43.947858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096915, - 43.937045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.004788, - 43.874341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096915, - 43.937045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.095503, - 43.936102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.095503, - 43.936102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.989727, - 44.094825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.989727, - 44.094825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035057, - 44.032071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035057, - 44.032071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016601, - 43.995534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016601, - 43.995534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.990858, - 43.989648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.990858, - 43.989648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.892666, - 43.955574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*164*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.892666, - 43.955574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*164*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.895762, - 43.955964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.082716, - 43.874919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*179*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.004788, - 43.874341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.909623, - 43.60133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.938977, - 43.545788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*190*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.909623, - 43.60133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.923529, - 43.660826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*193*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.822841, - 43.890183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*192*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.822841, - 43.890183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*192*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.954072, - 43.782424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*191*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.954072, - 43.782424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*191*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.938977, - 43.545788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*190*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.938977, - 43.545788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*190*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.982924, - 43.909768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.938977, - 43.545788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*190*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.938977, - 43.545788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.021517, - 43.570407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*189*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.021517, - 43.570407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*189*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998693, - 43.574724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*188*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998693, - 43.574724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*188*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.961662, - 43.542004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*187*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.961662, - 43.542004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*187*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.156247, - 43.881513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*185*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.112363, - 43.901386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.112363, - 43.901386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.947498, - 43.927462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.947498, - 43.927462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.982924, - 43.909768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.156247, - 43.881513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*185*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941249, - 43.52533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.015534, - 43.609589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.98771, - 43.604153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.037986, - 43.587605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.037986, - 43.587605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.997377, - 43.60107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.997377, - 43.60107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.966343, - 43.54985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.966343, - 43.54985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.934108, - 43.485077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.934108, - 43.485077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939531, - 43.505989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939531, - 43.505989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.022205, - 43.554817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.022205, - 43.554817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971852, - 43.54916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971852, - 43.54916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005572, - 43.674377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005572, - 43.674377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.972588, - 43.680862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.972588, - 43.680862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.977588, - 43.720795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.977588, - 43.720795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.731209, - 43.77903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.731209, - 43.77903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.807771, - 43.799503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.807771, - 43.799503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.989127, - 43.701473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.989127, - 43.701473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.122704, - 43.825058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.122704, - 43.825058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.98771, - 43.604153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.015534, - 43.609589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703947, - 43.773846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998574, - 43.580826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944208, - 43.654076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944208, - 43.654076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.926369, - 43.654064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.926369, - 43.654064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.043364, - 43.668011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.043364, - 43.668011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04891, - 43.665592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04891, - 43.665592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.073825, - 43.569656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.073825, - 43.569656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.077683, - 43.571644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.077683, - 43.571644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.072232, - 43.564846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.072232, - 43.564846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.056048, - 43.57943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.056048, - 43.57943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120687, - 43.658474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120687, - 43.658474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.139475, - 43.637203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.139475, - 43.637203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.063297, - 43.718616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.063297, - 43.718616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943561, - 43.796143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943561, - 43.796143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998574, - 43.580826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703947, - 43.773846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.728566, - 43.846939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.911085, - 43.639103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927089, - 43.656872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.920752, - 43.657753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.912976, - 43.639542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.912976, - 43.639542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.952294, - 43.632511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.952294, - 43.632511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.076204, - 43.605541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.076204, - 43.605541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.008748, - 43.551323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.008748, - 43.551323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006912, - 43.549686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006912, - 43.549686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.985467, - 43.667213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.985467, - 43.667213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005574, - 43.562817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005574, - 43.562817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.053818, - 43.575954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.053818, - 43.575954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.10996, - 43.568874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.10996, - 43.568874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92641, - 43.594131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92641, - 43.594131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120677, - 43.580116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120677, - 43.580116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01392, - 43.5569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01392, - 43.5569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.920752, - 43.657753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927089, - 43.656872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.728566, - 43.846939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932813, - 43.637276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.858089, - 43.843212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.858089, - 43.843212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793374, - 43.728943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793374, - 43.728943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.945192, - 43.534256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.945192, - 43.534256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941274, - 43.547829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941274, - 43.547829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.856857, - 43.647991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.856857, - 43.647991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030538, - 43.54903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030538, - 43.54903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.842196, - 43.629398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.842196, - 43.629398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.958667, - 43.64222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.958667, - 43.64222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.920399, - 43.656429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.920399, - 43.656429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.913658, - 43.607716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.913658, - 43.607716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.002274, - 43.550552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.002274, - 43.550552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.947942, - 43.580189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.947942, - 43.580189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932813, - 43.637276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.911085, - 43.639103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.936605, - 43.640907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939465, - 43.521552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.003423, - 43.590169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*232*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.038457, - 43.543026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.038457, - 43.543026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.032011, - 43.548501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.032011, - 43.548501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.025539, - 43.553686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.025539, - 43.553686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.118111, - 43.589299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.118111, - 43.589299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.922162, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.922162, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.021575, - 43.575086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*106*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.021575, - 43.575086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.948066, - 43.567243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*103*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.948066, - 43.567243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.948066, - 43.567243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*103*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.948066, - 43.567243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.091817, - 43.595834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.091817, - 43.595834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096315, - 43.628653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*101*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096315, - 43.628653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096315, - 43.628653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096315, - 43.628653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*101*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005276, - 43.570099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005276, - 43.570099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.133592, - 43.628931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.133592, - 43.628931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.054662, - 43.62566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.054662, - 43.62566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941249, - 43.52533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939465, - 43.521552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.984026, - 43.568851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944397, - 43.487486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.121963, - 43.70119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.121963, - 43.70119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959911, - 43.5515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.125101, - 43.573163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.125101, - 43.573163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.000926, - 43.549382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.000926, - 43.549382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92296, - 43.651211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92296, - 43.651211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.97701, - 43.643076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.97701, - 43.643076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030741, - 43.624772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030741, - 43.624772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944397, - 43.487486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.984026, - 43.568851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.892531, - 43.64505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.936605, - 43.640907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.929529, - 43.592361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.863265, - 43.888893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875867, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875867, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007235, - 43.640324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007235, - 43.640324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.039275, - 43.621956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.039275, - 43.621956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007241, - 43.642086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007241, - 43.642086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.045228, - 43.624069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.045228, - 43.624069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.106864, - 43.686066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.106864, - 43.686066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.099003, - 43.685253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.099003, - 43.685253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.094443, - 43.627628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.094443, - 43.627628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120866, - 43.578243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120866, - 43.578243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12197, - 43.600079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12197, - 43.600079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.863265, - 43.888893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.929529, - 43.592361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.892531, - 43.64505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875872, - 43.639107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932883, - 43.620566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932883, - 43.620566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.946316, - 43.550246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.946316, - 43.550246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.946316, - 43.550246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.946316, - 43.550246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793363, - 43.650307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793363, - 43.650307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.873651, - 43.638214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.873651, - 43.638214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.993788, - 43.569118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.993788, - 43.569118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.018548, - 43.575386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.018548, - 43.575386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.968254, - 43.566551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.968254, - 43.566551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006267, - 43.576397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006267, - 43.576397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998012, - 43.577129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998012, - 43.577129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01581, - 43.569206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01581, - 43.569206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016371, - 43.577526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016371, - 43.577526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.979139, - 43.547508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.979139, - 43.547508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.847364, - 43.700356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.847364, - 43.700356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875872, - 43.639107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.003423, - 43.590169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*232*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935367, - 44.091897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*148*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111309, - 50.665473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "411207012", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIXT", - "ref": "FR*SOD*S*OTHR*154*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111309, - 50.665473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "411207012", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIXT", - "ref": "FR*SOD*S*OTHR*154*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111309, - 50.665473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "411207012", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIXT", - "ref": "FR*SOD*S*OTHR*154*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111309, - 50.665473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "411207012", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIXT", - "ref": "FR*SOD*S*OTHR*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.520462, - 45.541127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.534797, - 45.162929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.950778, - 45.291775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.950778, - 45.291775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.542987, - 45.164994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.542987, - 45.164994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.544331, - 45.164748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.544331, - 45.164748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.478655, - 45.148654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.478655, - 45.148654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.534797, - 45.162929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.533704, - 45.159655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.533348, - 45.156801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.533704, - 45.159655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.670771, - 45.17567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.563502, - 45.424296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.570625, - 45.442994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.570625, - 45.442994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.562014, - 45.426246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.562014, - 45.426246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.770483, - 45.264992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*29*4*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.770483, - 45.264992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*29*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.670771, - 45.17567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.489849, - 45.0419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.770483, - 45.264992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*29*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.475894, - 45.257628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.563502, - 45.424296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.872822, - 45.367584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.872822, - 45.367584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.520462, - 45.541127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.495816, - 45.051969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.495816, - 45.051969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.523637, - 45.10095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*36*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.523637, - 45.10095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*36*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.581699, - 45.22832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.581699, - 45.22832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.475894, - 45.257628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.941229, - 45.405899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.489849, - 45.0419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.941229, - 45.405899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.851616, - 45.302048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.851616, - 45.302048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580087, - 45.053508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580087, - 45.053508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.507493, - 45.187074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.507493, - 45.187074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.457247, - 45.181659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.457247, - 45.181659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545809, - 45.222671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545809, - 45.222671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.770483, - 45.264992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.533348, - 45.156801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.770483, - 45.264992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*29*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.595673, - 45.177941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*18*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.414614, - 45.121961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.563527, - 45.170076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.563527, - 45.170076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724899, - 45.125055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724899, - 45.125055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.713402, - 45.366442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.713402, - 45.366442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.566751, - 45.427326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*16*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.566751, - 45.427326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*16*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.767277, - 45.313928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*17*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.767277, - 45.313928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*17*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.595673, - 45.177941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*18*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046184, - 45.405044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*11*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.770483, - 45.264992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*29*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.381578, - 45.397149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114273, - 45.392636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114273, - 45.392636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98696, - 44.983314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98696, - 44.983314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52392, - 45.227944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52392, - 45.227944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.635647, - 45.273307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.635647, - 45.273307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.759414, - 45.257594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.414614, - 45.121961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.759414, - 45.257594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046184, - 45.405044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*11*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.409911, - 45.264425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.72254, - 45.581782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430912, - 45.09254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430912, - 45.09254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.381578, - 45.397149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.489812, - 45.041874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*1*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.489812, - 45.041874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*1*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.325366, - 45.248766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*2*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8365, - 44.9785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8365, - 44.9785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.794784, - 45.535733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*4*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.794784, - 45.535733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*4*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.325366, - 45.248766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*2*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.671406, - 45.056961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.409911, - 45.264425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*5*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.939504, - 45.094104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*6*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.939504, - 45.094104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*6*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.402562, - 45.442391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.402562, - 45.442391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.671406, - 45.056961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.72254, - 45.581782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.032484, - 45.272957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.032484, - 45.272957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200087955", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - FDEE 19", - "ref": "FR*SOD*S*MB19*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.674923, - 45.88549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.782702, - 45.894882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.443896, - 45.611801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.782702, - 45.894882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.109904, - 45.887856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.277132, - 45.557682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.674923, - 45.88549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.178614, - 45.875145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.109904, - 45.887856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.177472, - 45.852036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.177472, - 45.852036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.178614, - 45.875145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.443896, - 45.611801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134252, - 45.987717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.277132, - 45.557682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.116474, - 45.953819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134252, - 45.987717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.668719, - 46.019272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.668719, - 46.019272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673548, - 46.015385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673548, - 46.015385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.452225, - 45.824615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.452225, - 45.824615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.448823, - 45.824127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.448823, - 45.824127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.455497, - 45.822887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.455497, - 45.822887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.116474, - 45.953819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71928, - 45.874187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.044549, - 45.331318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.652945, - 45.779949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.652945, - 45.779949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71928, - 45.874187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.082316, - 45.69619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.142347, - 45.644203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673057, - 46.004187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*69*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673057, - 46.004187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*69*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673057, - 46.004187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*69*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.049567, - 45.624888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.049567, - 45.624888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.174088, - 45.681636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.174088, - 45.681636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.250935, - 45.622856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.250935, - 45.622856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.093416, - 45.736952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.093416, - 45.736952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.158672, - 45.737022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.158672, - 45.737022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.142347, - 45.644203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.447453, - 45.820853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*70*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197387, - 45.662282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197387, - 45.662282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.053886, - 45.599658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.053886, - 45.599658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.057746, - 45.600461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.057746, - 45.600461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.389289, - 45.739451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.389289, - 45.739451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.035488, - 45.272907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.035488, - 45.272907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.500211, - 45.665909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.500211, - 45.665909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.276775, - 45.48212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673057, - 46.004187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*69*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.447453, - 45.820853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*70*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22732, - 45.982833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.050373, - 45.599652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.044549, - 45.331318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.158139, - 45.470455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.158139, - 45.470455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.153031, - 45.473186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.153031, - 45.473186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.158627, - 45.472511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.158627, - 45.472511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.512917, - 46.026398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.512917, - 46.026398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.028132, - 45.894077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.028132, - 45.894077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.010372, - 45.893837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.010372, - 45.893837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.050373, - 45.599652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.447453, - 45.820853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*70*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.228827, - 45.678441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.228827, - 45.678441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.154645, - 45.585627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.154645, - 45.585627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.082316, - 45.69619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.153052, - 45.470035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*73*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.153052, - 45.470035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*73*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.153052, - 45.470035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*73*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.850099, - 46.003008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.850099, - 46.003008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197685, - 46.028155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197685, - 46.028155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*71*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.447453, - 45.820853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*70*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.276775, - 45.48212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.153052, - 45.470035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*73*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22732, - 45.982833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.742937, - 45.828297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.250624, - 45.312988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.250624, - 45.312988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.007294, - 45.953514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.007294, - 45.953514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.466107, - 45.894127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.466107, - 45.894127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.140125, - 45.804214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.140125, - 45.804214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.065062, - 45.775581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.065062, - 45.775581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.064496, - 45.774048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.064496, - 45.774048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.742937, - 45.828297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.784798, - 46.121174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.162199, - 45.959202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.784798, - 46.121174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123815, - 45.553669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123815, - 45.553669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.897107, - 45.983635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13251, - 45.398552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13251, - 45.398552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.142127, - 45.450443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.142127, - 45.450443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130669, - 45.397438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130669, - 45.397438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.551885, - 45.777496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.551885, - 45.777496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.074098, - 45.814956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.162199, - 45.959202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.897107, - 45.983635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.582232, - 45.886162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.169304, - 45.271808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.074098, - 45.814956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.582232, - 45.886162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.411413, - 45.992661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.411413, - 45.992661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.124428, - 45.782601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.124428, - 45.782601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.360679, - 45.737043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.174193, - 45.678883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.174193, - 45.678883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.043452, - 45.271091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.043452, - 45.271091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23647, - 45.383097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23647, - 45.383097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.360679, - 45.737043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.169304, - 45.271808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122785, - 45.762363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.307256, - 45.887142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646388, - 45.993485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.307256, - 45.887142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127878, - 45.760067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122785, - 45.762363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127878, - 45.760067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.106897, - 45.882244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.106897, - 45.882244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.033299, - 45.476361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.033299, - 45.476361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646388, - 45.993485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "251600060", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEG 16", - "ref": "FR*SOD*S*MB16*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.565975, - 43.476482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.479587, - 43.480652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.565975, - 43.476482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.213154, - 43.191563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.213154, - 43.191563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601011, - 43.00021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.601011, - 43.00021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.470652, - 43.491817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.470652, - 43.491817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.472567, - 43.495884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.479587, - 43.480652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.477648, - 43.493511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498578, - 43.479191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.477648, - 43.493511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.472567, - 43.495884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.455062, - 43.499332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.455062, - 43.499332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.466206, - 43.494068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.554001, - 43.477989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.466206, - 43.494068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.554001, - 43.477989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.398105, - 43.302116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.563354, - 43.480667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59103, - 43.437927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.281022, - 43.234398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.509453, - 43.446564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.281022, - 43.234398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352839, - 43.288059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352839, - 43.288059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.384321, - 43.31488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.384321, - 43.31488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.398105, - 43.302116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59103, - 43.437927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.563354, - 43.480667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.350787, - 43.265263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.350787, - 43.265263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.138647, - 43.483562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.138647, - 43.483562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.548945, - 43.486942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.548945, - 43.486942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.546907, - 43.477184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.546907, - 43.477184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498578, - 43.479191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.512033, - 43.500191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.509453, - 43.446564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.515348, - 43.482128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.522298, - 43.437332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.506672, - 43.334591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.506672, - 43.334591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.550943, - 43.432129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.550943, - 43.432129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.512033, - 43.500191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52123, - 43.526859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52123, - 43.526859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.515348, - 43.482128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.689243, - 43.260807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51197, - 43.48389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51197, - 43.48389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*3*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51197, - 43.48389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*3*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.528599, - 43.49427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.528599, - 43.49427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.542654, - 43.499855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.542654, - 43.499855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.362168, - 43.220955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.522298, - 43.437332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.689243, - 43.260807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.20519, - 43.474678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.429515, - 43.103352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.20519, - 43.474678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25735, - 43.142101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25735, - 43.142101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.618273, - 43.345978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.618273, - 43.345978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.410083, - 43.534473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.410083, - 43.534473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.429515, - 43.103352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.475503, - 43.31702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.715234, - 43.095051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.475503, - 43.31702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.249037, - 43.275677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.249037, - 43.275677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.615299, - 43.464344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.615299, - 43.464344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.744628, - 42.977497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.744628, - 42.977497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.715234, - 43.095051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.362168, - 43.220955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51197, - 43.48389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.490235, - 43.523514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.428099, - 42.987434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392011, - 43.324577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392011, - 43.324577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.397803, - 43.323635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.397803, - 43.323635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.112355, - 43.449062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.112355, - 43.449062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478445, - 43.222603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478445, - 43.222603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.428099, - 42.987434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.350442, - 43.316139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.093103, - 43.230892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.093103, - 43.230892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386753, - 43.487186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386753, - 43.487186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.616958, - 43.411995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.616958, - 43.411995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.850575, - 43.381123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.850575, - 43.381123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.350442, - 43.316139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8925, - 43.22081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.760931, - 43.323807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25093, - 43.339058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342253, - 43.415913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.630113, - 43.370914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.630113, - 43.370914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420695, - 43.468288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420695, - 43.468288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.264224, - 43.344501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.264224, - 43.344501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25093, - 43.339058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.199239, - 43.12558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8925, - 43.22081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.199239, - 43.12558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.348866, - 43.369244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.348866, - 43.369244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.579099, - 43.322563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.470634, - 43.445972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.470634, - 43.445972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355827, - 43.279404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355827, - 43.279404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.256211, - 43.429482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.256211, - 43.429482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391359, - 43.285931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.665693, - 43.382233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.163053, - 43.245216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.446297, - 43.339203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.446297, - 43.339203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510176, - 43.361061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510176, - 43.361061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.242255, - 43.181904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.242255, - 43.181904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.665693, - 43.382233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.877405, - 43.231102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391359, - 43.285931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.877405, - 43.231102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.013904, - 43.375095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.013904, - 43.375095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.400544, - 43.360828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.400544, - 43.360828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.400397, - 43.360764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.400397, - 43.360764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.490235, - 43.523514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.163053, - 43.245216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.387803, - 43.231609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.387803, - 43.231609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273733, - 43.558586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.428592, - 43.388065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.428592, - 43.388065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772589, - 43.346947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772589, - 43.346947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.781185, - 43.368279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.781185, - 43.368279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.244016, - 43.306767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.244016, - 43.306767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303562, - 43.385555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303562, - 43.385555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.608876, - 43.424664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.608876, - 43.424664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.052827, - 43.252918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.052827, - 43.252918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.370771, - 43.285103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.370771, - 43.285103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273733, - 43.558586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342253, - 43.415913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.579099, - 43.322563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.760931, - 43.323807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67319, - 43.551067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.189169, - 43.266113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.377164, - 43.379723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.377164, - 43.379723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260889, - 43.178398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.940464, - 43.400017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.386747, - 43.403503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.386747, - 43.403503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67319, - 43.551067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.579401, - 43.313419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.864163, - 43.116352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.579401, - 43.313419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9301, - 43.472912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9301, - 43.472912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.458963, - 43.47879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.458963, - 43.47879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.549645, - 43.353794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.549645, - 43.353794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.03606, - 43.328079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.189169, - 43.266113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.864163, - 43.116352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.233588, - 43.165531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.432928, - 43.39959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.586527, - 43.444202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.586527, - 43.444202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.651662, - 43.433836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.651662, - 43.433836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3265, - 43.325056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*127*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.454603, - 43.436344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.454603, - 43.436344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.432928, - 43.39959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.455624, - 43.397102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.336469, - 43.485744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.455624, - 43.397102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.292284, - 43.494446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.292284, - 43.494446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.698865, - 43.360786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.698865, - 43.360786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.697669, - 43.363674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.697669, - 43.363674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.336469, - 43.485744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.03606, - 43.328079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.940464, - 43.400017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.233588, - 43.165531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366184, - 43.332508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.354209, - 43.295143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.354209, - 43.295143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.268858, - 43.284081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.268858, - 43.284081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.298317, - 43.234406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.298317, - 43.234406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77348, - 43.487251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77348, - 43.487251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77197, - 43.48888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77197, - 43.48888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612117, - 43.194351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612117, - 43.194351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604778, - 43.193943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661432, - 43.385006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502143, - 43.153542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502143, - 43.153542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260889, - 43.178398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366184, - 43.332508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604778, - 43.193943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366184, - 43.332508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.915612, - 43.526646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366184, - 43.332508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661432, - 43.385006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.658076, - 43.387047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.340355, - 43.178417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.340355, - 43.178417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30609, - 43.378071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30609, - 43.378071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.915612, - 43.526646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.658076, - 43.387047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.113234, - 43.184776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.370207, - 43.302959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478742, - 43.346134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478742, - 43.346134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365129, - 43.310795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365129, - 43.310795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.370207, - 43.302959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.113234, - 43.184776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "256402041", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDEPA 64", - "ref": "FR*SOD*S*MB64*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714729, - 45.989853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*73*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714729, - 45.989853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*73*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.028857, - 45.691996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*72*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.028857, - 45.691996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*72*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.028857, - 45.691996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*72*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777867, - 45.479026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*71*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777867, - 45.479026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*71*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825081, - 45.628819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.777867, - 45.479026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*71*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825081, - 45.628819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.489594, - 45.293211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*69*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.489594, - 45.293211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*69*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.575699, - 45.907782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*68*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.720416, - 45.988316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.646585, - 46.087432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*67*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714729, - 45.989853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*73*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.720225, - 46.212433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.720416, - 45.988316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.720225, - 46.212433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.646585, - 46.087432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*67*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.748752, - 45.50388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.934166, - 45.626426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*82*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.934166, - 45.626426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*82*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.557323, - 46.027767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.557323, - 46.027767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.551768, - 45.776551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401897, - 46.22657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.551768, - 45.776551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.607217, - 45.91693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.607217, - 45.91693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.072008, - 45.712338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.072008, - 45.712338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401897, - 46.22657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.646585, - 46.087432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*67*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.748752, - 45.50388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.584769, - 45.922797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714179, - 45.836536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.584402, - 45.852788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.584402, - 45.852788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71428, - 45.834577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71428, - 45.834577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.661321, - 45.819686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.661321, - 45.819686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.752542, - 46.108371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*49*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.752542, - 46.108371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*49*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.752542, - 46.108371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*49*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714179, - 45.836536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.720659, - 45.985401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711515, - 45.877443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711515, - 45.877443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.821907, - 45.495687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.821907, - 45.495687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.536011, - 46.207105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.536011, - 46.207105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.587281, - 46.153978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.587281, - 46.153978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.729213, - 46.111418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.720659, - 45.985401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714825, - 45.994463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717496, - 45.986943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*64*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714003, - 45.987794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717496, - 45.986943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*64*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71603, - 45.99157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*63*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71603, - 45.99157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*63*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71603, - 45.99157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*63*7*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71603, - 45.99157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*63*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.536185, - 45.642682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.536185, - 45.642682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.634883, - 46.040888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.634883, - 46.040888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.622554, - 45.826259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714825, - 45.994463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.622554, - 45.826259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.675936, - 46.244125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.675936, - 46.244125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573233, - 46.111426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573233, - 46.111426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.708909, - 45.990444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.708909, - 45.990444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.126468, - 45.716651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*55*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.126468, - 45.716651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*55*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.729213, - 46.111418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.751429, - 46.104656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.751429, - 46.104656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573959, - 45.90671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.696621, - 45.988154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80452, - 45.564159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80452, - 45.564159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.935313, - 45.627002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.935313, - 45.627002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.112423, - 45.711155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.112423, - 45.711155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.764807, - 45.461143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.764807, - 45.461143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573959, - 45.90671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.673493, - 45.620682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871368, - 45.621003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871368, - 45.621003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.705451, - 46.024601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.705451, - 46.024601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.743134, - 45.889597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.743134, - 45.889597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.998177, - 45.734077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.998177, - 45.734077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.083837, - 45.801292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.696621, - 45.988154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010678, - 45.644385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010678, - 45.644385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.698285, - 46.191549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.673493, - 45.620682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.563659, - 45.657817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.563659, - 45.657817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91325, - 45.619856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91325, - 45.619856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.701152, - 45.676796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.701152, - 45.676796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.68011, - 45.855128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.68011, - 45.855128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.680341, - 46.160492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.680341, - 46.160492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.584769, - 45.922797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.066882, - 45.75491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.066882, - 45.75491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.111309, - 45.713004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.111309, - 45.713004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86562, - 45.524907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86562, - 45.524907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.698285, - 46.191549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717496, - 45.986943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*64*6*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714003, - 45.987794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717496, - 45.986943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*64*8*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050034, - 45.686693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789865, - 45.483864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789865, - 45.483864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.649969, - 46.066545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.649969, - 46.066545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717011, - 45.935984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717011, - 45.935984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050034, - 45.686693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700996, - 45.898624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.015578, - 45.73785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.015578, - 45.73785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.728839, - 45.871845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.728839, - 45.871845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.030031, - 45.69374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.030031, - 45.69374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700996, - 45.898624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.712088, - 45.858566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.985571, - 45.654184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82279, - 45.628326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466701, - 45.791375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466701, - 45.791375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.810038, - 45.487663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.810038, - 45.487663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.718215, - 45.551842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.718215, - 45.551842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82279, - 45.628326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.712088, - 45.858566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.456113, - 45.633003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.456113, - 45.633003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.669453, - 45.965676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685948, - 45.639919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.463119, - 45.739716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.463119, - 45.739716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.985571, - 45.654184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685948, - 45.639919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.083837, - 45.801292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714888, - 45.859648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*66*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.669453, - 45.965676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.714888, - 45.859648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200089720", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SYDER", - "ref": "FR*SOD*S*SYDR*66*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.090126, - 43.939368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*8*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.090126, - 43.939368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*8*1*_*_", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046351, - 50.528935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*7*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319254, - 49.320532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*5*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456431, - 45.622261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*3*2*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8501, - 44.361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*2*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8501, - 44.361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*2*1*_*_", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.85208, - 44.36182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*1*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.85208, - 44.36182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*1*1*_*_", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.509783, - 47.309481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "433704889", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "AVIA PICOTY", - "ref": "FR*SOD*S*AVPT*4*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.337888, - 45.249092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.722759, - 45.187054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042477, - 44.865112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.042477, - 44.865112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.600149, - 45.417603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217378, - 45.400749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.600149, - 45.417603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.722759, - 45.187054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.724807, - 45.179817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.337888, - 45.249092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.724807, - 45.179817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730312, - 45.192043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730312, - 45.192043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.711979, - 45.180084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.711979, - 45.180084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.715532, - 45.184345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044134, - 44.868401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.044134, - 44.868401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.253506, - 44.993977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.253506, - 44.993977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.840611, - 45.419838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.840611, - 45.419838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.363911, - 44.860176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.363911, - 44.860176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.794854, - 45.148567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.794854, - 45.148567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.791827, - 45.151276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.791827, - 45.151276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089969, - 45.011402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.089969, - 45.011402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.262063, - 44.745258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.262063, - 44.745258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.748864, - 45.492863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.715532, - 45.184345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058212, - 44.995899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058212, - 44.995899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86671, - 44.943237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.977736, - 45.047359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.977736, - 45.047359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.012185, - 44.786625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.012185, - 44.786625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24543, - 45.063183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24543, - 45.063183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.154022, - 44.845245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.154022, - 44.845245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.392442, - 45.201721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.527508, - 45.144791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.527508, - 45.144791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.135192, - 45.20187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.652252, - 44.842113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.135192, - 45.20187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86671, - 44.943237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68793, - 45.624321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339009, - 45.248264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339009, - 45.248264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.652252, - 44.842113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68793, - 45.624321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.600758, - 45.164207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.600758, - 45.164207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.285507, - 44.803474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.285507, - 44.803474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.400406, - 44.854721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.417831, - 44.779984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.400406, - 44.854721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210743, - 44.84433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210743, - 44.84433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.417831, - 44.779984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.748864, - 45.492863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06972, - 45.140911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.392442, - 45.201721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.809715, - 44.946423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.165397, - 44.834118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.165397, - 44.834118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.539875, - 45.021866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.539875, - 45.021866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.756159, - 45.420197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.756159, - 45.420197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.057228, - 44.946789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.057228, - 44.946789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080201, - 44.629173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080201, - 44.629173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.503334, - 44.870893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*146*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.503334, - 44.870893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*146*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.503334, - 44.870893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*146*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.503334, - 44.870893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*146*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.688412, - 45.157291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*147*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.688412, - 45.157291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*147*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.688412, - 45.157291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*147*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.688412, - 45.157291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*147*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.380141, - 45.481873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*149*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.380141, - 45.481873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*149*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.380141, - 45.481873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*149*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.380141, - 45.481873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*149*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.924316, - 45.420927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*150*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.365045, - 45.346584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.365045, - 45.346584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.101924, - 44.850285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919114, - 45.41589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.297951, - 45.132473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.297951, - 45.132473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.298838, - 45.129875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.298838, - 45.129875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.302298, - 45.126183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.302298, - 45.126183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15009, - 44.966335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15009, - 44.966335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.391331, - 45.050846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.391331, - 45.050846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919114, - 45.41589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.101924, - 44.850285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.920901, - 45.413513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.920901, - 45.413513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.496523, - 45.253567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.496523, - 45.253567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.056962, - 45.270565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.056962, - 45.270565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.73867, - 45.196922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.73867, - 45.196922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.779958, - 45.195217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.779958, - 45.195217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.924316, - 45.420927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*150*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.924316, - 45.420927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*150*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.924316, - 45.420927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*150*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.873653, - 45.235855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06972, - 45.140911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.872856, - 45.305759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.872856, - 45.305759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.987989, - 44.823059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.987989, - 44.823059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.408764, - 44.75695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.408764, - 44.75695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.918521, - 45.275173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.918521, - 45.275173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.873653, - 45.235855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21282, - 44.892532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46317, - 44.73729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*162*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21282, - 44.892532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217389, - 44.892673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217389, - 44.892673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.214353, - 44.883865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.214353, - 44.883865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217427, - 44.880421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217427, - 44.880421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.323247, - 44.974308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.323247, - 44.974308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.809715, - 44.946423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.715628, - 45.121777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46317, - 44.73729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*162*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.526451, - 45.146795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*151*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74053, - 44.83758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*155*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.526451, - 45.146795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*151*1*_*_", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.526451, - 45.146795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*151*1*_*_", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.526451, - 45.146795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*151*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.708895, - 45.186926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.708895, - 45.186926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68774, - 45.24278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*153*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68774, - 45.24278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*153*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.12589, - 45.29469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*154*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.12589, - 45.29469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*154*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74053, - 44.83758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*155*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81836, - 45.54399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*156*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.55972, - 45.56986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*161*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81836, - 45.54399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*156*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71839, - 45.02641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*157*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71839, - 45.02641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*157*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.27914, - 45.16059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*158*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.27914, - 45.16059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*158*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67401, - 45.58997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*159*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67401, - 45.58997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*159*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88787, - 44.88431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*160*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88787, - 44.88431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*160*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.55972, - 45.56986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*161*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217378, - 45.400749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.768692, - 44.767879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.715628, - 45.121777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.689566, - 45.19173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.727561, - 45.216908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.727561, - 45.216908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666067, - 45.205341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666067, - 45.205341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.704716, - 45.364296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.704716, - 45.364296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.703903, - 45.36301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.703903, - 45.36301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.232004, - 45.118351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.232004, - 45.118351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.689566, - 45.19173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.568117, - 44.8554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.743226, - 45.204578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.568117, - 44.8554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.937528, - 45.222622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.937528, - 45.222622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21471, - 44.803703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21471, - 44.803703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.051004, - 45.336727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.051004, - 45.336727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.400101, - 44.666527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.400101, - 44.666527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.642597, - 44.790836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.642597, - 44.790836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.743226, - 45.204578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.698037, - 45.392223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.331995, - 44.836281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647709, - 45.36491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.870593, - 44.630783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.870593, - 44.630783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.763094, - 45.182499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.763094, - 45.182499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.75831, - 45.181854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.75831, - 45.181854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.526162, - 44.75946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.526162, - 44.75946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589328, - 45.321854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589328, - 45.321854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647709, - 45.36491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.724982, - 45.176006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.698037, - 45.392223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.648179, - 45.36924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.563419, - 44.935707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.563419, - 44.935707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.075685, - 44.939213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.075685, - 44.939213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.152277, - 44.813114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.152277, - 44.813114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.433106, - 44.882481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.433106, - 44.882481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.203975, - 44.798595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.203975, - 44.798595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.331995, - 44.836281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2907, - 44.820824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150119, - 44.839417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659777, - 45.184494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.228201, - 45.129517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.228201, - 45.129517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011215, - 44.938702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011215, - 44.938702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.018297, - 44.934868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.018297, - 44.934868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.451196, - 45.451656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.451196, - 45.451656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.661303, - 45.187424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.661303, - 45.187424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659777, - 45.184494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.909665, - 44.992535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.912535, - 44.845737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.909665, - 44.992535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.490578, - 44.793633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.490578, - 44.793633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.895054, - 44.682358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.895054, - 44.682358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.065287, - 44.852802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.065287, - 44.852802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.151401, - 45.055424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.151401, - 45.055424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.165569, - 45.060806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.165569, - 45.060806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.912535, - 44.845737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.926937, - 44.916542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2907, - 44.820824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.375426, - 44.868919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145795, - 45.258835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145795, - 45.258835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608055, - 44.730904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608055, - 44.730904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060931, - 45.493061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060931, - 45.493061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.976027, - 45.539673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.976027, - 45.539673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.375686, - 44.867256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.375686, - 44.867256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.375426, - 44.868919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.011073, - 45.150936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.926937, - 44.916542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.011073, - 45.150936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18357, - 44.825272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18357, - 44.825272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.724749, - 44.835953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.724749, - 44.835953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.382402, - 44.842258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.382402, - 44.842258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.140332, - 45.392262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.140332, - 45.392262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.926065, - 44.922066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.926065, - 44.922066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150119, - 44.839417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.648179, - 45.36924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48543, - 44.849667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167167, - 45.412544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48543, - 44.849667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.165742, - 45.009018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163076, - 45.009335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163076, - 45.009335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.352734, - 45.033329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.352734, - 45.033329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.470814, - 45.09845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.470814, - 45.09845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.468953, - 45.101334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.468953, - 45.101334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.662087, - 45.532616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.662087, - 45.532616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.664768, - 45.528957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.664768, - 45.528957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.165742, - 45.009018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167167, - 45.412544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.006493, - 44.777496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.482518, - 44.853123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.482518, - 44.853123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.487476, - 44.85006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.487476, - 44.85006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.488127, - 44.857044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.488127, - 44.857044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.006493, - 44.777496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.724982, - 45.176006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.768692, - 44.767879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.815406, - 45.192722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.815406, - 45.192722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.947273, - 44.879646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.947273, - 44.879646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252401476", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE - SDE 24", - "ref": "FR*SOD*S*MB24*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.893833, - 48.718861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.855722, - 48.693527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.855722, - 48.693527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.771222, - 48.638779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.771222, - 48.638779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.893833, - 48.718861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9375, - 48.572861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8545, - 48.694752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8545, - 48.694752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.877333, - 48.576057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9375, - 48.572861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9375, - 48.572861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.73275, - 48.620556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.73275, - 48.620556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.870972, - 48.492584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.648667, - 48.681057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.648667, - 48.681057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.825583, - 48.624027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.825583, - 48.624027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.857833, - 48.691528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.857833, - 48.691528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.870972, - 48.492584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.876806, - 48.462891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.876806, - 48.462891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.835139, - 48.635139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.835139, - 48.635139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.876861, - 48.666058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.876861, - 48.666058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.912787, - 48.553249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9375, - 48.572861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.877333, - 48.576057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.912787, - 48.553249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.887639, - 48.700056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00075, - 48.621056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00075, - 48.621056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.028, - 48.616028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.028, - 48.616028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.954833, - 48.639778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.954833, - 48.639778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.942056, - 48.571835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.942056, - 48.571835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.887639, - 48.700056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.887639, - 48.700056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.909889, - 48.612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.887639, - 48.700056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.990366, - 48.578239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.757398, - 48.677654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.822078, - 48.649048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.822078, - 48.649048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.774694, - 48.6362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.774694, - 48.6362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.687804, - 48.650483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.687804, - 48.650483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.909889, - 48.612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.757398, - 48.677654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.830751, - 48.644615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.778462, - 48.578293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.830751, - 48.644615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.990366, - 48.578239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986778, - 48.583527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986778, - 48.583527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.818773, - 48.645462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.768139, - 48.720886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.768139, - 48.720886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.766528, - 48.722111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.766528, - 48.722111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.818773, - 48.645462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.778462, - 48.578293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.729444, - 48.588638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.682583, - 48.624279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.682583, - 48.624279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811028, - 48.586834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811028, - 48.586834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.97425, - 48.674915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.729444, - 48.588638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.97425, - 48.674915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "247800600", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "RT78", - "ref": "FR*SOD*S*RMBT*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19051, - 43.431608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*13*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.436696, - 43.230377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*11*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.436696, - 43.230377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*11*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.418975, - 43.295209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*12*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.418975, - 43.295209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19051, - 43.431608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.477612, - 43.351743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.378603, - 43.281329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*14*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.378603, - 43.281329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.477612, - 43.351743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*15*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.358982, - 43.34878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.358982, - 43.34878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*17*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412999, - 43.232758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412999, - 43.232758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*10*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.386217, - 43.293338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46368, - 43.344786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*9*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46368, - 43.344786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*9*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.629119, - 43.294115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*7*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.629119, - 43.294115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*7*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.385708, - 43.271343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*6*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.385708, - 43.271343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*6*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465206, - 43.345215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*5*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31663, - 43.35941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*18*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465206, - 43.345215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*5*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.386217, - 43.293338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*4*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.631226, - 43.213632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*3*2*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.631226, - 43.213632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*3*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.376535, - 43.316873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.376535, - 43.316873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*2*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31663, - 43.35941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31658, - 43.35928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.392652, - 43.263914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.391018, - 43.24751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*35*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404042, - 43.296462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*36*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404042, - 43.296462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31658, - 43.35928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*37*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.419599, - 43.302329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.419599, - 43.302329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*40*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356974, - 43.354063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390964, - 43.289144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390964, - 43.289144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*42*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.375423, - 43.28474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.375423, - 43.28474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*43*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390964, - 43.289144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390964, - 43.289144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*45*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.200007, - 43.35579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*52*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.200007, - 43.35579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*52*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.392652, - 43.263914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*19*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.391018, - 43.24751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356974, - 43.354063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*41*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.466939, - 43.360151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*34*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499072, - 43.288723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410341, - 43.272064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.466939, - 43.360151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4351, - 43.311065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4351, - 43.311065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*21*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.359208, - 43.28286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.359208, - 43.28286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*27*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499072, - 43.288723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*28*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410341, - 43.272064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*20*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.392465, - 43.283473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.369238, - 43.401226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*30*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.369238, - 43.401226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.378812, - 43.34764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.378812, - 43.34764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*31*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.392465, - 43.283473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "912043676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MAMP", - "ref": "FR*SOD*S*MAMP*29*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.145565, - 45.535069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290458, - 45.387565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290458, - 45.387565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271105, - 45.382999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271105, - 45.382999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.145565, - 45.535069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.926255, - 45.598333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451322, - 45.66523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451322, - 45.66523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.926255, - 45.598333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312163, - 45.549453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*7*3*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312163, - 45.549453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200078947", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "MOBIVE LA DIEGE", - "ref": "FR*SOD*S*MBDG*7*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.937306, - 45.359277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*3*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.344201, - 43.361123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*1*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347042, - 43.35903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*2*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.717265, - 48.538636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*12*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.273755, - 45.337849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*4*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.855781, - 48.270983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*7*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.812358, - 45.855017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*9*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.81278, - 45.856003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*10*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.154907, - 45.682211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*11*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.855139, - 48.275634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*13*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.064884, - 48.974332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*14*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552876, - 49.072469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*15*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.090055, - 43.937192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "780130175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SHELL", - "ref": "FR*SOD*S*SHEL*5*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.770166, - 48.57303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZENPARK", - "owner:ref:FR:SIREN": "537527145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ZENPARK", - "ref": "FR*SOD*S*OTHR*133*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.770166, - 48.57303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZENPARK", - "owner:ref:FR:SIREN": "537527145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ZENPARK", - "ref": "FR*SOD*S*OTHR*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.770166, - 48.57303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZENPARK", - "owner:ref:FR:SIREN": "537527145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ZENPARK", - "ref": "FR*SOD*S*OTHR*133*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.770166, - 48.57303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZENPARK", - "owner:ref:FR:SIREN": "537527145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ZENPARK", - "ref": "FR*SOD*S*OTHR*133*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.770166, - 48.57303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZENPARK", - "owner:ref:FR:SIREN": "537527145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ZENPARK", - "ref": "FR*SOD*S*OTHR*133*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.770166, - 48.57303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZENPARK", - "owner:ref:FR:SIREN": "537527145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "ZENPARK", - "ref": "FR*SOD*S*OTHR*133*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.511859, - 48.821478 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAMPIGNY - 66354 - Rue Raymond Poincare", - "ref": "FRS55E6635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525589, - 47.668808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MUIDES SUR LOIRE 4326 - Rue du Tramway", - "ref": "FRS41E432", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525589, - 47.668808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MUIDES SUR LOIRE 4326 - Rue du Tramway", - "ref": "FRS41E432", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037276, - 47.585286 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.407851, - 45.806785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Montalieu-Vercieu", - "ref": "FRIENE002602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.407851, - 45.806785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Montalieu-Vercieu", - "ref": "FRIENE002602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.407851, - 45.806785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Montalieu-Vercieu", - "ref": "FRIENE002601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540494, - 48.892528 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Saint MIHIEL - 66364 - Place Jaques Bailleux", - "ref": "FRS55E6636", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.428741, - 47.958865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERDES 4328 - Place de l'église", - "ref": "FRS41E432", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.428741, - 47.958865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERDES 4328 - Place de l'église", - "ref": "FRS41E432", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540494, - 48.892528 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Saint MIHIEL - 66364 - Place Jaques Bailleux", - "ref": "FRS55E6636", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929119, - 46.854559 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PREUILLY SUR CLAISE 4338", - "ref": "FRS37E433", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.407851, - 45.806785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Montalieu-Vercieu", - "ref": "FRIENE002601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42481307, - 47.11995595 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'ILE BOUCHARD 1338", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42481307, - 47.11995595 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'ILE BOUCHARD 1338", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387714, - 49.15923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Rue des Tanneries - 66477", - "ref": "FRS55E6647", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387714, - 49.15923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Rue des Tanneries - 66477", - "ref": "FRS55E6647", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929119, - 46.854559 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PREUILLY SUR CLAISE 4338", - "ref": "FRS37E433", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623389, - 48.595821 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Domfront", - "ref": "FRIENE004902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.452333, - 47.071648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DOLE", - "ref": "FRCPIE6704845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.452333, - 47.071648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DOLE", - "ref": "FRCPIE6704845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.460828, - 47.499325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEVERNY 4301 - Place de l'Eglise", - "ref": "FRS41E430", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.785548, - 48.09154 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MOF BORNE 1", - "ref": "FRCPIE6604335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.668772, - 48.602209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VAUCOULEURS - 66342 - Rue de la République", - "ref": "FRS55E6634", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.718157, - 47.39166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST PIERRE DES CORPS 4343 - Parking Despouy", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.460828, - 47.499325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEVERNY 4301 - Place de l'Eglise", - "ref": "FRS41E430", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.383243, - 49.163453 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Rue de Jeanne d'arc - 66578", - "ref": "FRS55E6657", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.383243, - 49.163453 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Rue de Jeanne d'arc - 66578", - "ref": "FRS55E6657", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011539, - 48.474088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA LOUPE - Place de la gare - 134202", - "ref": "FRS28E13420", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011539, - 48.474088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA LOUPE - Place de la gare - 134202", - "ref": "FRS28E13420", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.668772, - 48.602209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VAUCOULEURS - 66342 - Rue de la République", - "ref": "FRS55E6634", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.388646, - 49.161975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Av général mangin - 66596", - "ref": "FRS55E6659", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355194, - 48.720645 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOUILLET - Rue du Moulin Rouge - 139334", - "ref": "FRS28E13933", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.388646, - 49.161975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Av général mangin - 66596", - "ref": "FRS55E6659", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381737, - 49.155459 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERDUN - 66586 - Cité d'Anthouard", - "ref": "FRS55E6658", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381737, - 49.155459 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERDUN - 66586 - Cité d'Anthouard", - "ref": "FRS55E6658", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.288487, - 49.031403 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOUILLY - 93386 - Voie Sacrée", - "ref": "FRS55E9338", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.288487, - 49.031403 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOUILLY - 93386 - Voie Sacrée", - "ref": "FRS55E9338", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623041, - 48.690563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOID VACON - 66350 - Rue du Stade", - "ref": "FRS55E6635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623041, - 48.690563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOID VACON - 66350 - Rue du Stade", - "ref": "FRS55E6635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355194, - 48.720645 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOUILLET - Rue du Moulin Rouge - 139334", - "ref": "FRS28E13933", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39074, - 49.160318 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Rue du 8 mai 1945 - 66603", - "ref": "FRS55E6660", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.785548, - 48.09154 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MOF BORNE 1", - "ref": "FRCPIE6604335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366673, - 49.519625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 MONTMEDY-place Raymond Poincare-66592", - "ref": "FRS55E6659", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666684, - 47.399974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 1343 - Esplanade", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666684, - 47.399974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 1343 - Esplanade", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.610285, - 43.466186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ROUSSET", - "ref": "FRCPIE6604545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.511859, - 48.821478 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAMPIGNY - 66354 - Rue Raymond Poincare", - "ref": "FRS55E6635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708556, - 45.750501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BELLEY", - "ref": "FRCPIE6637385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708556, - 45.750501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BELLEY", - "ref": "FRCPIE6637385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366673, - 49.519625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 MONTMEDY-place Raymond Poincare-66592", - "ref": "FRS55E6659", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.114099, - 48.937863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VAUBECOURT - 13 rue Ernest Chaudron - 66185", - "ref": "FRS55E6618", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39074, - 49.160318 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VERDUN - Rue du 8 mai 1945 - 66603", - "ref": "FRS55E6660", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.114099, - 48.937863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 VAUBECOURT - 13 rue Ernest Chaudron - 66185", - "ref": "FRS55E6618", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.059802, - 48.978479 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEUIL D'ARGONNE - 66173 - Place Poincaré", - "ref": "FRS55E6617", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.059802, - 48.978479 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEUIL D'ARGONNE - 66173 - Place Poincaré", - "ref": "FRS55E6617", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.672126, - 47.254312 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sorigny A10 CCS", - "ref": "FRS37E431", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.672126, - 47.254312 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sorigny A10 CCS", - "ref": "FRS37E431", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.672126, - 47.254312 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sorigny A10 CCS", - "ref": "FRS37E431", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.672126, - 47.254312 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sorigny A10 CCS", - "ref": "FRS37E431", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.037276, - 47.585286 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333499, - 47.584457 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4383 - Place Jacques Lob", - "ref": "FRS41E438", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.718157, - 47.39166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST PIERRE DES CORPS 4343 - Parking Despouy", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856182, - 48.271147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Neuvy", - "ref": "FRIONE45920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42975, - 47.421438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTRES 4440 - Rue dela libération", - "ref": "FRS41E444", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42975, - 47.421438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTRES 4440 - Rue dela libération", - "ref": "FRS41E444", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.394261, - 48.718342 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LURAY - Rue Emile Zola - 130756", - "ref": "FRS28E13075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.044051, - 47.416387 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SALBRIS 4485 - Rue de la Convention", - "ref": "FRS41E448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.044051, - 47.416387 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SALBRIS 4485 - Rue de la Convention", - "ref": "FRS41E448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05821, - 47.42841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SALBRIS 4489 - Avenue de la Resistance", - "ref": "FRS41E448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05821, - 47.42841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SALBRIS 4489 - Avenue de la Resistance", - "ref": "FRS41E449", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.022989, - 47.601445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", - "ref": "FRS41E449", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.022989, - 47.601445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", - "ref": "FRS41E449", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856182, - 48.271147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Neuvy", - "ref": "FRIONE45920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856182, - 48.271147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Neuvy", - "ref": "FRIONE45920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856182, - 48.271147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Neuvy", - "ref": "FRIONE45920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856182, - 48.271147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Neuvy", - "ref": "FRIONE45920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856182, - 48.271147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Neuvy", - "ref": "FRIONE45920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545043, - 47.549129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRACIEUX 4436 - Rue de Candy", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.303007, - 48.283904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FRANKENBOURG BORNE GARAGE", - "ref": "FRCPIE6640555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.447639, - 47.639409 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLIVAULT 4501 - Rue du Château d'eau", - "ref": "FRS41E450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.447639, - 47.639409 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLIVAULT 4501 - Rue du Château d'eau", - "ref": "FRS41E450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.908075, - 47.509629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLE LE LIERRE 4503 - Place de la gare", - "ref": "FRS37E450", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.908075, - 47.509629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLE LE LIERRE 4503 - Place de la gare", - "ref": "FRS37E450", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.244902, - 47.1648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 4504 - Place Jeanne d'arc", - "ref": "FRS37E450", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.244902, - 47.1648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 4504 - Place Jeanne d'arc", - "ref": "FRS37E565", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.553296, - 47.016191 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PORTS 4506 - Place Romain Rideau", - "ref": "FRS37E450", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.553296, - 47.016191 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PORTS 4506 - Place Romain Rideau", - "ref": "FRS37E450", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.359058, - 47.608669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", - "ref": "FRS41E451", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.359058, - 47.608669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", - "ref": "FRS41E451", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.490553, - 47.23129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MENETOU-SALON - Place de la Mairie - 205372", - "ref": "FRS18E20537", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE46310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545043, - 47.549129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRACIEUX 4436 - Rue de Candy", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.459363, - 47.507757 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COUR CHEVERNY 4432 - Rue Gilette", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.390409, - 47.636004 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269623, - 48.977679 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES TROIS DOMAINES (droite) Centre d'affaires", - "ref": "FRS55E6536", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.390409, - 47.636004 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.664424, - 45.198312 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED MARSAC", - "ref": "FRCPIE6637615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.664424, - 45.198312 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED MARSAC", - "ref": "FRCPIE6637615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.557391, - 47.273629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELLES SUR CHER 4350 - Allée de la Gravouille", - "ref": "FRS41E435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.557391, - 47.273629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELLES SUR CHER 4350 - Allée de la Gravouille", - "ref": "FRS41E435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.553632, - 47.273794 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELLES SUR CHER 4353 - Rue du Moulinet", - "ref": "FRS41E435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.553632, - 47.273794 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELLES SUR CHER 4353 - Rue du Moulinet", - "ref": "FRS41E435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.332601, - 47.587793 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Place Saint Honoré -139113", - "ref": "FRS41E13911", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.332601, - 47.587793 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Place Saint Honoré -139113", - "ref": "FRS41E13911", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.338252, - 47.593425 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4373 - Avenue du Maréchal Maunoury", - "ref": "FRS41E437", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.338252, - 47.593425 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4373 - Avenue du Maréchal Maunoury", - "ref": "FRS41E437", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.778858, - 45.183035 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BOULAZAC", - "ref": "FRCPIE6638005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.778858, - 45.183035 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BOULAZAC", - "ref": "FRCPIE6638005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333499, - 47.584457 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4383 - Place Jacques Lob", - "ref": "FRS41E438", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.459363, - 47.507757 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COUR CHEVERNY 4432 - Rue Gilette", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.452407, - 48.173165 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Parking La Louvière - 144239 - CCS", - "ref": "FRS88E14423", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.452407, - 48.173165 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Parking La Louvière - 144239 - CCS", - "ref": "FRS88E14424", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.339852, - 47.583802 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4387 - Rue des Alliés", - "ref": "FRS41E438", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.339852, - 47.583802 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4387 - Rue des Alliés", - "ref": "FRS41E438", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.144079, - 48.220488 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LES BAGENELLES BORNE 1", - "ref": "FRCPIE6639555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.144079, - 48.220488 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LES BAGENELLES BORNE 1", - "ref": "FRCPIE6639555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.159173, - 48.76661 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-rue d'Alnois-66244", - "ref": "FRS55E6624", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.159173, - 48.76661 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-rue d'Alnois-66244", - "ref": "FRS55E6624", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.448257, - 48.169441 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Pkg Petit Champ de Mars - 144258 - CCS", - "ref": "FRS88E14425", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.448257, - 48.169441 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Pkg Petit Champ de Mars - 144258 - CCS", - "ref": "FRS88E14426", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.334115, - 47.589412 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4430 - Square du 11 Novembre 1918", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.334115, - 47.589412 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4430 - Square du 11 Novembre 1918", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39177715, - 48.18831452 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BONNEVAL - Rue de Chartres - 129245", - "ref": "FRS28E12924", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269623, - 48.977679 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES TROIS DOMAINES (droite) Centre d'affaires", - "ref": "FRS55E6536", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.773067, - 47.268872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 8", - "ref": "FRCPIE6530285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269623, - 48.977679 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES TROIS DOMAINES (droite) Centre d'affaires", - "ref": "FRS55E6533", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.506585, - 47.70652 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MER 4053 - Rue de Mardeau", - "ref": "FRS41E405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3438376, - 43.3603506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc NORD", - "ref": "FRSHEE164", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3438376, - 43.3603506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc NORD", - "ref": "FRSHEE164", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.226371, - 44.910821 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LIBOURNE", - "ref": "FRCPIE6631655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.226371, - 44.910821 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LIBOURNE", - "ref": "FRCPIE6631655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.183371, - 47.938264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 5 DC", - "ref": "FRCPIE6631545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.183371, - 47.938264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 5 DC", - "ref": "FRCPIE6631545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.183371, - 47.938264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 5 DC", - "ref": "FRCPIE6631745", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418747, - 43.304831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED LONS", - "ref": "FRCPIE6632045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418747, - 43.304831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED LONS", - "ref": "FRCPIE6632045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828268, - 45.491712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED VIENNE", - "ref": "FRCPIE6632365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828268, - 45.491712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED VIENNE", - "ref": "FRCPIE6632365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.508335, - 47.703524 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MER 4043 - Avenue Maréchal Maunoury", - "ref": "FRS41E404", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.508335, - 47.703524 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MER 4043 - Avenue Maréchal Maunoury", - "ref": "FRS41E404", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.506585, - 47.70652 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MER 4053 - Rue de Mardeau", - "ref": "FRS41E405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3438376, - 43.3603506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc NORD", - "ref": "FRSHEE163", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29412, - 47.822077 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "OUCQUES 4071 - Place du Château", - "ref": "FRS41E407", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29412, - 47.822077 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "OUCQUES 4071 - Place du Château", - "ref": "FRS41E407", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.775121, - 48.463146 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU - Rue Pasteur - 186530", - "ref": "FRS28E18653", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.210292, - 47.887587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FRETEVAL 4091 - Rue De Pont", - "ref": "FRS41E409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.210292, - 47.887587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FRETEVAL 4091 - Rue De Pont", - "ref": "FRS41E409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.582503, - 48.596041 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES SAVIGNY LE MILLENAIRE 2", - "ref": "FRCPIE6633745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.582503, - 48.596041 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES SAVIGNY LE MILLENAIRE 2", - "ref": "FRCPIE6633755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.017258, - 48.637806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 ANCERVILLE-87 rue de st Dizier-66213", - "ref": "FRS55E6621", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.017258, - 48.637806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 ANCERVILLE-87 rue de st Dizier-66213", - "ref": "FRS55E6621", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.167513, - 48.780168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-boulevard des flandres-66198", - "ref": "FRS55E6619", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.167513, - 48.780168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-boulevard des flandres-66198", - "ref": "FRS55E6619", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.591824, - 48.758457 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 COMMERCY-rue du cardinal de Retz", - "ref": "FRS55E6619", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.591824, - 48.758457 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 COMMERCY-rue du cardinal de Retz", - "ref": "FRS55E6619", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3438376, - 43.3603506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc NORD", - "ref": "FRSHEE164", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3438376, - 43.3603506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc NORD", - "ref": "FRSHEE163", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269623, - 48.977679 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES TROIS DOMAINES (droite) Centre d'affaires", - "ref": "FRS55E6533", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.918671, - 49.242974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny", - "ref": "FRIONE4017", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.358596, - 47.566555 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GERVAIS LA FORET 3780", - "ref": "FRS41E378", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.340464, - 48.703578 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GARNAY - Parking mairie - 137368", - "ref": "FRS28E13736", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.340464, - 48.703578 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GARNAY - Parking mairie - 137368", - "ref": "FRS28E13736", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38237017, - 48.7101955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vernouillet", - "ref": "FRIENE008501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38237017, - 48.7101955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vernouillet", - "ref": "FRIENE008501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38237017, - 48.7101955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vernouillet", - "ref": "FRIENE008502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38237017, - 48.7101955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vernouillet", - "ref": "FRIENE008502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.330067, - 43.317932 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PAU", - "ref": "FRCPIE6630425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.330067, - 43.317932 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PAU", - "ref": "FRCPIE6630425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.918671, - 49.242974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny", - "ref": "FRIONE40170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.918671, - 49.242974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny", - "ref": "FRIONE40170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.918671, - 49.242974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny", - "ref": "FRIONE40170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.918671, - 49.242974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny", - "ref": "FRIONE40170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.796171, - 43.818161 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE SAFER BORNE 2", - "ref": "FRCPIE6630485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-08:00,Mo 17:00-24:00,Tu 00:00-08:00,Tu 17:00-24:00,We 00:00-08:00,We 17:00-24:00,Th 00:00-08:00,Th 17:00-24:00,Fr 00:00-08:00,Fr 17:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3438376, - 43.3603506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc NORD", - "ref": "FRSHEE163", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.796171, - 43.818161 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE SAFER BORNE 2", - "ref": "FRCPIE6630485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-08:00,Mo 17:00-24:00,Tu 00:00-08:00,Tu 17:00-24:00,We 00:00-08:00,We 17:00-24:00,Th 00:00-08:00,Th 17:00-24:00,Fr 00:00-08:00,Fr 17:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.796171, - 43.818161 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE SAFER BORNE 2", - "ref": "FRCPIE6630495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-08:00,Mo 17:00-24:00,Tu 00:00-08:00,Tu 17:00-24:00,We 00:00-08:00,We 17:00-24:00,Th 00:00-08:00,Th 17:00-24:00,Fr 00:00-08:00,Fr 17:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.796171, - 43.818161 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE SAFER BORNE 2", - "ref": "FRCPIE6630495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-08:00,Mo 17:00-24:00,Tu 00:00-08:00,Tu 17:00-24:00,We 00:00-08:00,We 17:00-24:00,Th 00:00-08:00,Th 17:00-24:00,Fr 00:00-08:00,Fr 17:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058091, - 48.503769 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", - "ref": "FRS28E13737", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058091, - 48.503769 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", - "ref": "FRS28E13737", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77145, - 49.346833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING CAMPING BORNE 3", - "ref": "FRCPIE6717765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77145, - 49.346833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING CAMPING BORNE 3", - "ref": "FRCPIE6717765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77145, - 49.346833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING CAMPING BORNE 3", - "ref": "FRCPIE6719675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77145, - 49.346833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING CAMPING BORNE 3", - "ref": "FRCPIE6719675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77145, - 49.346833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING CAMPING BORNE 3", - "ref": "FRCPIE6719695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.77145, - 49.346833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING CAMPING BORNE 3", - "ref": "FRCPIE6719695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46166, - 46.135004 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITM ST JEOIRE BORNE 1", - "ref": "FRCPIE6715655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46166, - 46.135004 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITM ST JEOIRE BORNE 1", - "ref": "FRCPIE6715655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586958, - 46.378498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vérités", - "ref": "FRIONE43860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586958, - 46.378498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vérités", - "ref": "FRIONE43860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586958, - 46.378498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vérités", - "ref": "FRIONE43860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.046276, - 48.716915 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier", - "ref": "FRS55E6626", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.773067, - 47.268872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 8", - "ref": "FRCPIE6747105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.773067, - 47.268872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 8", - "ref": "FRCPIE6747105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.379939, - 49.175325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BELLEVILLE SUR MEUSE - 66276 - Pl Maginot", - "ref": "FRS55E6627", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.379939, - 49.175325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BELLEVILLE SUR MEUSE - 66276 - Pl Maginot", - "ref": "FRS55E6627", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.427367, - 49.071221 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DIEUX SUR MEUSE-rue des dames-66466", - "ref": "FRS55E6646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.427367, - 49.071221 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DIEUX SUR MEUSE-rue des dames-66466", - "ref": "FRS55E6646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.511154, - 48.973301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CROIX SUR MEUSE - 66450 - Place 40ème RA", - "ref": "FRS55E6645", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.511154, - 48.973301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CROIX SUR MEUSE - 66450 - Place 40ème RA", - "ref": "FRS55E6645", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.023062, - 47.593796 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMOTTE BEUVRON 4228 - La Gare", - "ref": "FRS41E422", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.023062, - 47.593796 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMOTTE BEUVRON 4228 - La Gare", - "ref": "FRS41E449", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400957, - 49.342913 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DAMVILLERS - Pl des Martyrs - 66369", - "ref": "FRS55E6636", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400957, - 49.342913 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DAMVILLERS - Pl des Martyrs - 66369", - "ref": "FRS55E6637", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.046276, - 48.716915 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier", - "ref": "FRS55E6625", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90451, - 47.61043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", - "ref": "FRS41E423", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586958, - 46.378498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vérités", - "ref": "FRIONE43860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90451, - 47.61043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", - "ref": "FRS41E423", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.934461, - 45.758512 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED VAULX", - "ref": "FRCPIE6634845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.934461, - 45.758512 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED VAULX", - "ref": "FRCPIE6634845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.627281, - 49.096559 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 FRESNES EN WORVRE-place Clemenceau-66387", - "ref": "FRS55E6638", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.627281, - 49.096559 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 FRESNES EN WORVRE-place Clemenceau-66387", - "ref": "FRS55E6638", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974959, - 45.720724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF GENAS", - "ref": "FRCPIE6634875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974959, - 45.720724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF GENAS", - "ref": "FRCPIE6634875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242708, - 48.593992 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300", - "ref": "FRS55E6630", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242708, - 48.593992 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300", - "ref": "FRS55E6630", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.636671, - 49.213447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 ETAIN-place Rouillon-66462", - "ref": "FRS55E6646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.636671, - 49.213447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 ETAIN-place Rouillon-66462", - "ref": "FRS55E6646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.611639, - 44.721801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PRIVAS", - "ref": "FRCPIE6635705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.611639, - 44.721801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PRIVAS", - "ref": "FRCPIE6635705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.773067, - 47.268872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 8", - "ref": "FRCPIE6747085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.773067, - 47.268872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 8", - "ref": "FRCPIE6747085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE46310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.773067, - 47.268872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 8", - "ref": "FRCPIE6530285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586958, - 46.378498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vérités", - "ref": "FRIONE4386", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071757, - 49.105212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240", - "ref": "FRS55E6624", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071757, - 49.105212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240", - "ref": "FRS55E6624", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58761, - 47.108011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", - "ref": "FRS37E416", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58761, - 47.108011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", - "ref": "FRS37E416", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58761, - 47.108011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", - "ref": "FRS37E416", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58761, - 47.108011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", - "ref": "FRS37E416", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.324949, - 48.68465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 LIGNY EN BAROIS-rue du général de Gaulle-66282", - "ref": "FRS55E6628", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.324949, - 48.68465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 LIGNY EN BAROIS-rue du général de Gaulle-66282", - "ref": "FRS55E6628", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38719, - 49.167779 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BELLE VILLE SUR MEUSE - Av Miribel - 66287", - "ref": "FRS55E6628", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38719, - 49.167779 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BELLE VILLE SUR MEUSE - Av Miribel - 66287", - "ref": "FRS55E6628", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111015, - 48.932711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GD BORNE 3", - "ref": "FRCPIE6678665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111015, - 48.932711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GD BORNE 3", - "ref": "FRCPIE6678665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111015, - 48.932711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GD BORNE 3", - "ref": "FRCPIE6678675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111015, - 48.932711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GD BORNE 3", - "ref": "FRCPIE6678675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111015, - 48.932711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GD BORNE 3", - "ref": "FRCPIE6678685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111015, - 48.932711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GD BORNE 3", - "ref": "FRCPIE6678685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284357, - 49.285869 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 CONSENVOYE - Rue du port - 66323", - "ref": "FRS55E6632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284357, - 49.285869 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 CONSENVOYE - Rue du port - 66323", - "ref": "FRS55E6632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.354515, - 48.488338 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BURE-rond point andra-66333", - "ref": "FRS55E6633", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.354515, - 48.488338 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BURE-rond point andra-66333", - "ref": "FRS55E6633", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.376687, - 49.210123 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BRAS SUR MEUSE - Av du douaumont - 66306", - "ref": "FRS55E6630", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.376687, - 49.210123 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BRAS SUR MEUSE - Av du douaumont - 66306", - "ref": "FRS55E6630", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.507144, - 48.513392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 GONDRECOURT-rue de la grande fontaine-66326", - "ref": "FRS55E6632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.507144, - 48.513392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 GONDRECOURT-rue de la grande fontaine-66326", - "ref": "FRS55E6632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.185284, - 49.381609 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DUN SUR MEUSE-rue faubourg st Martin-66576", - "ref": "FRS55E6657", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.185284, - 49.381609 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 DUN SUR MEUSE-rue faubourg st Martin-66576", - "ref": "FRS55E6657", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE46310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE42340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE46310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451011, - 43.413836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vidauban Sud", - "ref": "FRIONE40960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368237, - 46.043417 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Jean-le-Vieux", - "ref": "FRIENE002101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.467517, - 48.451561 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAINVILLIERS - Rue des acacias - 137397", - "ref": "FRS28E13739", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.038878, - 47.878668 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Baud", - "ref": "FRIENE000502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.038878, - 47.878668 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Baud", - "ref": "FRIENE000502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.038878, - 47.878668 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Baud", - "ref": "FRIENE000501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.038878, - 47.878668 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Baud", - "ref": "FRIENE000501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47429851, - 47.28622 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carquefou", - "ref": "FRIENE001402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47429851, - 47.28622 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carquefou", - "ref": "FRIENE001402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47429851, - 47.28622 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carquefou", - "ref": "FRIENE001401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47429851, - 47.28622 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carquefou", - "ref": "FRIENE001401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451011, - 43.413836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vidauban Sud", - "ref": "FRIONE4096", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451011, - 43.413836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vidauban Sud", - "ref": "FRIONE40960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451011, - 43.413836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vidauban Sud", - "ref": "FRIONE40960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451011, - 43.413836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vidauban Sud", - "ref": "FRIONE40960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368237, - 46.043417 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Jean-le-Vieux", - "ref": "FRIENE002102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0729855, - 43.656838 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Riscle", - "ref": "FRIENE004402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0729855, - 43.656838 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Riscle", - "ref": "FRIENE004402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0729855, - 43.656838 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Riscle", - "ref": "FRIENE004401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0729855, - 43.656838 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Riscle", - "ref": "FRIENE004401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94627322, - 47.20955182 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AZAY SUR INDRE 1204", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94627322, - 47.20955182 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AZAY SUR INDRE 1204", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.965193, - 47.310522 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bléré", - "ref": "FRIENE002302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.965193, - 47.310522 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bléré", - "ref": "FRIENE002302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.965193, - 47.310522 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bléré", - "ref": "FRIENE002301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.965193, - 47.310522 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bléré", - "ref": "FRIENE002301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417606, - 46.751623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France Sud", - "ref": "FRIONE4318", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417606, - 46.751623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France Sud", - "ref": "FRIONE43180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417606, - 46.751623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France Sud", - "ref": "FRIONE43180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368237, - 46.043417 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Jean-le-Vieux", - "ref": "FRIENE002101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368237, - 46.043417 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Jean-le-Vieux", - "ref": "FRIENE002102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417606, - 46.751623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France Sud", - "ref": "FRIONE43180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4701, - 47.205931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Aubigné-sur-Layon", - "ref": "FRIENE012022000201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.623299, - 48.126677 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Ferté-Bernard", - "ref": "FRIONE40420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.623299, - 48.126677 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Ferté-Bernard", - "ref": "FRIONE40420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.623299, - 48.126677 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Ferté-Bernard", - "ref": "FRIONE40420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.623299, - 48.126677 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Ferté-Bernard", - "ref": "FRIONE4024", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703989, - 48.464876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Glonville", - "ref": "FRIENE002202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703989, - 48.464876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Glonville", - "ref": "FRIENE002202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703989, - 48.464876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Glonville", - "ref": "FRIENE002201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703989, - 48.464876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Glonville", - "ref": "FRIENE002201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58691, - 48.777465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 16", - "ref": "FRCPIE6715665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58691, - 48.777465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 16", - "ref": "FRCPIE6715665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4701, - 47.205931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Aubigné-sur-Layon", - "ref": "FRIENE012022000202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4701, - 47.205931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Aubigné-sur-Layon", - "ref": "FRIENE012022000202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4701, - 47.205931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Aubigné-sur-Layon", - "ref": "FRIENE012022000201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.69244004, - 50.2638029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rue", - "ref": "FRIENE001302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276864, - 49.166746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Sud", - "ref": "FRIONE41710", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.69244004, - 50.2638029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rue", - "ref": "FRIENE001302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.69244004, - 50.2638029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rue", - "ref": "FRIENE001301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.69244004, - 50.2638029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rue", - "ref": "FRIENE001301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025792, - 49.26998 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Reims - 43118 - Place Luton", - "ref": "FRS51E4311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025792, - 49.26998 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Reims - 43118 - Place Luton", - "ref": "FRS51E4311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.591473, - 48.535052 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guerlesquin", - "ref": "FRIENE000402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.591473, - 48.535052 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guerlesquin", - "ref": "FRIENE000402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.591473, - 48.535052 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guerlesquin", - "ref": "FRIENE000401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.591473, - 48.535052 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guerlesquin", - "ref": "FRIENE000401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276864, - 49.166746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Sud", - "ref": "FRIONE4171", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276864, - 49.166746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Sud", - "ref": "FRIONE41710", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276864, - 49.166746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Sud", - "ref": "FRIONE41710", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.276864, - 49.166746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Sud", - "ref": "FRIONE41710", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417606, - 46.751623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France Sud", - "ref": "FRIONE43180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.988258, - 47.289471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SUBLAINES 1577", - "ref": "FRS37E157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE46310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.774333, - 48.606594 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Ste MARIE DU LAC - 42657 - Rue de Nuisement", - "ref": "FRS51E4265", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919507, - 46.92181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE PETIT PRESSIGNY 1270", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919507, - 46.92181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE PETIT PRESSIGNY 1270", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011295, - 47.13251 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAULIEU LES LOCHES 1561", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011295, - 47.13251 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAULIEU LES LOCHES 1561", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.442818, - 48.89486 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED NOISY LE SEC", - "ref": "FRCPIE6708365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.442818, - 48.89486 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED NOISY LE SEC", - "ref": "FRCPIE6708365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.730889, - 48.691364 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard", - "ref": "FRS51E4268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.730889, - 48.691364 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard", - "ref": "FRS51E4268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622302, - 48.125475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Villaines la Gonais", - "ref": "FRIONE4041", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622302, - 48.125475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Villaines la Gonais", - "ref": "FRIONE40410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622302, - 48.125475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Villaines la Gonais", - "ref": "FRIONE40410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622302, - 48.125475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Villaines la Gonais", - "ref": "FRIONE40410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622302, - 48.125475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Villaines la Gonais", - "ref": "FRIONE40410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.774333, - 48.606594 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Ste MARIE DU LAC - 42657 - Rue de Nuisement", - "ref": "FRS51E4265", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.110091, - 46.797692 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Pierre-le-Moûtier", - "ref": "FRIENE006301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.767633, - 48.552621 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE", - "ref": "FRS51E4264", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.767633, - 48.552621 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE", - "ref": "FRS51E4264", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.862188, - 46.870463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAUMUSSAY 1220", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.862188, - 46.870463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAUMUSSAY 1220", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.882995, - 44.898702 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED VALENCE", - "ref": "FRCPIE6679575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.882995, - 44.898702 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED VALENCE", - "ref": "FRCPIE6679575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE4404", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.463518, - 48.450539 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAINVILLIERS - Place du marché - 137401", - "ref": "FRS28E13740", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.110091, - 46.797692 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Pierre-le-Moûtier", - "ref": "FRIENE006301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.988258, - 47.289471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SUBLAINES 1577", - "ref": "FRS37E157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18727, - 45.69493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Champniers", - "ref": "FRIENE001801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.387367, - 48.418057 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maen Roch", - "ref": "FRIENE001202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.387367, - 48.418057 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maen Roch", - "ref": "FRIENE001202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.387367, - 48.418057 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maen Roch", - "ref": "FRIENE001201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.387367, - 48.418057 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maen Roch", - "ref": "FRIENE001201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.715108, - 47.305223 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEIGNE 1328 - Les Gués", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.715108, - 47.305223 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEIGNE 1328 - Les Gués", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144648, - 45.250465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Molompize", - "ref": "FRIENE001502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144648, - 45.250465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Molompize", - "ref": "FRIENE001502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144648, - 45.250465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Molompize", - "ref": "FRIENE001501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144648, - 45.250465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Molompize", - "ref": "FRIENE001501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18727, - 45.69493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Champniers", - "ref": "FRIENE001802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18727, - 45.69493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Champniers", - "ref": "FRIENE001802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18727, - 45.69493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Champniers", - "ref": "FRIENE001801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.717265, - 48.538636 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Ostwald Ouest", - "ref": "FRSPSESHEL121", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.110091, - 46.797692 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Pierre-le-Moûtier", - "ref": "FRIENE006302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.642571, - 48.4357 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Rénan", - "ref": "FRIENE000302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.642571, - 48.4357 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Rénan", - "ref": "FRIENE000302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.642571, - 48.4357 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Rénan", - "ref": "FRIENE000301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.642571, - 48.4357 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Rénan", - "ref": "FRIENE000301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.557073, - 48.73262 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ESTERNAY - 42869 - PLACE DES TILLEULS", - "ref": "FRS51E4286", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.557073, - 48.73262 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ESTERNAY - 42869 - PLACE DES TILLEULS", - "ref": "FRS51E4286", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0577, - 48.4911 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Taden", - "ref": "FRIENE000902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0577, - 48.4911 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Taden", - "ref": "FRIENE000902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0577, - 48.4911 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Taden", - "ref": "FRIENE000901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0577, - 48.4911 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Taden", - "ref": "FRIENE000901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.720691, - 48.721745 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEZANNE - 42863 - Place du Champ Benoist", - "ref": "FRS51E4286", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.720691, - 48.721745 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEZANNE - 42863 - Place du Champ Benoist", - "ref": "FRS51E4286", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.110091, - 46.797692 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Pierre-le-Moûtier", - "ref": "FRIENE006302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.623299, - 48.126677 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Ferté-Bernard", - "ref": "FRIONE40420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.613088, - 49.061558 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dormans", - "ref": "FRIENE001901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.613088, - 49.061558 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dormans", - "ref": "FRIENE001901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499875, - 43.681048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 7-8", - "ref": "FRCPIE6753155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE42340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE42340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE4385", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE43850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE43850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE43850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE43850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE43850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012336, - 49.204187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Champfleury", - "ref": "FRIONE43850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499421, - 43.681159 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 9-10", - "ref": "FRCPIE6753165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499421, - 43.681159 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 9-10", - "ref": "FRCPIE6753165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499421, - 43.681159 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 9-10", - "ref": "FRCPIE6753085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499421, - 43.681159 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 9-10", - "ref": "FRCPIE6753085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499875, - 43.681048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 7-8", - "ref": "FRCPIE6753155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE42340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499875, - 43.681048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 7-8", - "ref": "FRCPIE6753145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499875, - 43.681048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 7-8", - "ref": "FRCPIE6753145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499875, - 43.681048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 7-8", - "ref": "FRCPIE6753035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499875, - 43.681048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAAPIMMOPERTUIS BORNE 7-8", - "ref": "FRCPIE6753035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.760127, - 48.462029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU - Complexe Sportif - 139678", - "ref": "FRS28E13967", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.760127, - 48.462029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU - Complexe Sportif - 139678", - "ref": "FRS28E13967", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332664, - 49.17908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MONDEVILLE 2", - "ref": "FRCPIE6752245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332664, - 49.17908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MONDEVILLE 2", - "ref": "FRCPIE6752245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332664, - 49.17908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MONDEVILLE 2", - "ref": "FRCPIE6752235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332664, - 49.17908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MONDEVILLE 2", - "ref": "FRCPIE6752235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07560301, - 49.0617463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mézidon Vallée d'Auge", - "ref": "FRIENE003102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07560301, - 49.0617463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mézidon Vallée d'Auge", - "ref": "FRIENE003102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07560301, - 49.0617463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mézidon Vallée d'Auge", - "ref": "FRIENE003101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE42340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.563245, - 43.1786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED OLORON-STE-MARI", - "ref": "FRCPIE6629455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.613088, - 49.061558 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dormans", - "ref": "FRIENE001902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033293, - 47.533779 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", - "ref": "FRS41E457", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE46310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.686392, - 48.748002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Brumath Bernolsheim", - "ref": "FRIONE4631", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34025, - 47.588846 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4531 - Mail Pierre Sudreau", - "ref": "FRS41E8822", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34025, - 47.588846 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4531 - Mail Pierre Sudreau", - "ref": "FRS41E8823", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.338914, - 47.587974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4539 - Quai Saint Jean", - "ref": "FRS41E453", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.338914, - 47.587974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4539 - Quai Saint Jean", - "ref": "FRS41E454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.369809, - 47.567044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", - "ref": "FRS41E454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.369809, - 47.567044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", - "ref": "FRS41E454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.740861, - 47.358186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 4547", - "ref": "FRS41E454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.740861, - 47.358186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 4547", - "ref": "FRS41E454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.743234, - 47.359277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 4549 - Place de la paix", - "ref": "FRS41E454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.743234, - 47.359277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 4549 - Place de la paix", - "ref": "FRS41E455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033293, - 47.533779 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", - "ref": "FRS41E457", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127244, - 49.215278 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Méru Amblainville", - "ref": "FRIENE003501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE42340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127244, - 49.215278 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Méru Amblainville", - "ref": "FRIENE003501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127244, - 49.215278 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Méru Amblainville", - "ref": "FRIENE003502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.481391, - 48.443547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Rue du grand faubourg - 134789", - "ref": "FRS28E13478", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.041007, - 49.166166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RILLY LA MONTAGNE", - "ref": "FRS51E5014", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.041007, - 49.166166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RILLY LA MONTAGNE", - "ref": "FRS51E5014", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.392673, - 48.220971 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTBOISSIER - Les Rues Neuves - 129294", - "ref": "FRS28E12929", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332181, - 46.440327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Amour", - "ref": "FRIENE006102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332181, - 46.440327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Amour", - "ref": "FRIENE006102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332181, - 46.440327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Amour", - "ref": "FRIENE006101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332181, - 46.440327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Amour", - "ref": "FRIENE006101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.882983, - 45.284904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AED CROLLES", - "ref": "FRCPIE6590225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.882983, - 45.284904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AED CROLLES", - "ref": "FRCPIE6590225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88964, - 44.024414 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sorgues", - "ref": "FRIONE4234", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07560301, - 49.0617463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mézidon Vallée d'Auge", - "ref": "FRIENE003101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.240505, - 48.760843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST-REMY-SUR-AVRE - Place des Dodots - 139435", - "ref": "FRS28E13943", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.356077, - 48.7207 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOUILLET - Place du 8 mai 1945 - 139037", - "ref": "FRS28E13903", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.450029, - 49.254993 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MONTATAIRE", - "ref": "FRCPIE6601735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.450029, - 49.254993 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MONTATAIRE", - "ref": "FRCPIE6601735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.693046, - 45.7744333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazey-Bons", - "ref": "FRIENE001602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.693046, - 45.7744333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazey-Bons", - "ref": "FRIENE001602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.693046, - 45.7744333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazey-Bons", - "ref": "FRIENE001601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.693046, - 45.7744333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazey-Bons", - "ref": "FRIENE001601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.322385, - 48.676224 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TREON - Rue Jean Michel Herault - 134347", - "ref": "FRS28E13434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.413199, - 46.63381 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Roche-sur-Yon", - "ref": "FRIENE000602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586908, - 48.77765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 30", - "ref": "FRCPIE6715685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.855305, - 48.068504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Noyal-Pontivy", - "ref": "FRIENE000802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.855305, - 48.068504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Noyal-Pontivy", - "ref": "FRIENE000802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.855305, - 48.068504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Noyal-Pontivy", - "ref": "FRIENE000801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.855305, - 48.068504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Noyal-Pontivy", - "ref": "FRIENE000801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.613088, - 49.061558 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dormans", - "ref": "FRIENE001902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.234271, - 47.076183 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Gétigné", - "ref": "FRIENE002001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.234271, - 47.076183 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Gétigné", - "ref": "FRIENE002001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.234271, - 47.076183 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Gétigné", - "ref": "FRIENE002002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.234271, - 47.076183 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Gétigné", - "ref": "FRIENE002002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.413199, - 46.63381 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Roche-sur-Yon", - "ref": "FRIENE000602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.413199, - 46.63381 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Roche-sur-Yon", - "ref": "FRIENE000601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.413199, - 46.63381 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Roche-sur-Yon", - "ref": "FRIENE000601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586911, - 48.777919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 28", - "ref": "FRCPIE6715795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05605048, - 47.2040707 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Père-en-Retz", - "ref": "FRIENE000702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05605048, - 47.2040707 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Père-en-Retz", - "ref": "FRIENE000702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05605048, - 47.2040707 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Père-en-Retz", - "ref": "FRIENE000701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05605048, - 47.2040707 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Père-en-Retz", - "ref": "FRIENE000701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21783034, - 45.2046048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orignolles", - "ref": "FRIENE001702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21783034, - 45.2046048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orignolles", - "ref": "FRIENE001702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21783034, - 45.2046048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orignolles", - "ref": "FRIENE001701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21783034, - 45.2046048 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orignolles", - "ref": "FRIENE001701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603188, - 47.518873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Avrillé", - "ref": "FRIENE001102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603188, - 47.518873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Avrillé", - "ref": "FRIENE001102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603188, - 47.518873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Avrillé", - "ref": "FRIENE001101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603188, - 47.518873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Avrillé", - "ref": "FRIENE001101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.358596, - 47.566555 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GERVAIS LA FORET 3780", - "ref": "FRS41E378", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.51155, - 47.169884 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUIL 3567 - Parking Impasse des Lizas", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.563245, - 43.1786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED OLORON-STE-MARI", - "ref": "FRCPIE6629455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.256099, - 43.331777 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BEZIERS_", - "ref": "FRCPIE6609535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0926193, - 47.40984692 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOUVIGNY DE TOURAINE 1462", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.580119, - 47.223487 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THILOUZE 1464", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.580119, - 47.223487 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THILOUZE 1464", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.495216, - 43.309523 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AGDE", - "ref": "FRCPIE6609465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.495216, - 43.309523 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AGDE", - "ref": "FRCPIE6609465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081558, - 47.027467 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRIDORE 1467", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.081558, - 47.027467 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRIDORE 1467", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.745838, - 47.441886 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PARCAY MESLAY 1469", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.745838, - 47.441886 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PARCAY MESLAY 1469", - "ref": "FRS37E147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.087499, - 49.100667 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT-LÔ", - "ref": "FRCPIE6609475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.087499, - 49.100667 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT-LÔ", - "ref": "FRCPIE6609475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222769, - 43.368789 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED BEZIERS", - "ref": "FRCPIE6609505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222769, - 43.368789 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED BEZIERS", - "ref": "FRCPIE6609505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.256099, - 43.331777 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BEZIERS_", - "ref": "FRCPIE6609535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.936433, - 47.372148 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 4", - "ref": "FRCPIE6609195", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.958078, - 49.043274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UNILABS BIO CT EPERNAY", - "ref": "FRCPIE6609845", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.958078, - 49.043274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UNILABS BIO CT EPERNAY", - "ref": "FRCPIE6609845", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64144, - 49.078606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DORMANS -70244 - Gare", - "ref": "FRS51E7024", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64144, - 49.078606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DORMANS -70244 - Gare", - "ref": "FRS51E7024", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.397453, - 47.25505 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", - "ref": "FRS41E21188", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.397453, - 47.25505 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", - "ref": "FRS41E21188", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429383, - 46.776081 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY DC", - "ref": "FRCPIE6610335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429383, - 46.776081 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY DC", - "ref": "FRCPIE6610335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429383, - 46.776081 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY DC", - "ref": "FRCPIE6610415", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429383, - 46.776081 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY DC", - "ref": "FRCPIE6610415", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429227, - 46.776249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY 4", - "ref": "FRCPIE6610355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429227, - 46.776249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY 4", - "ref": "FRCPIE6610355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429227, - 46.776249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY 4", - "ref": "FRCPIE6610375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0926193, - 47.40984692 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOUVIGNY DE TOURAINE 1462", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.549604, - 47.348606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVONNIERES 1460 - Place du Faisan", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429227, - 46.776249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY 4", - "ref": "FRCPIE6610385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.93756, - 47.372504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 3", - "ref": "FRCPIE6609145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.308488, - 43.914901 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montbartier", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.308488, - 43.914901 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montbartier", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.308488, - 43.914901 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montbartier", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.308488, - 43.914901 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montbartier", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.308488, - 43.914901 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montbartier", - "ref": "FRIONE4215", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.445236, - 47.451294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AMBILLOU 1444", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.445236, - 47.451294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AMBILLOU 1444", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.937801, - 47.372326 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 1", - "ref": "FRCPIE6609135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.937801, - 47.372326 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 1", - "ref": "FRCPIE6609135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31917483, - 47.5476166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU LA VALLIERE 1446", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31917483, - 47.5476166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU LA VALLIERE 1446", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.894899, - 46.944576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CELLE GUENAND 1449", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.894899, - 46.944576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CELLE GUENAND 1449", - "ref": "FRS37E147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.93756, - 47.372504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 3", - "ref": "FRCPIE6609145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.549604, - 47.348606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVONNIERES 1460 - Place du Faisan", - "ref": "FRS37E146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.93756, - 47.372504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 3", - "ref": "FRCPIE6609155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.93756, - 47.372504 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 3", - "ref": "FRCPIE6609155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04215052, - 47.05603596 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNEUIL SUR INDRE 1453", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04215052, - 47.05603596 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNEUIL SUR INDRE 1453", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.937388, - 47.372671 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 6", - "ref": "FRCPIE6609175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.937388, - 47.372671 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 6", - "ref": "FRCPIE6609175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.377102, - 46.975509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAZINES 1441", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.377102, - 46.975509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAZINES 1441", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.909736, - 47.355949 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT MARTIN LE BEAU 1456", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.909736, - 47.355949 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT MARTIN LE BEAU 1456", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.348189, - 47.308279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COTEAUX-SUR-LOIRE 1458", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.348189, - 47.308279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COTEAUX-SUR-LOIRE 1458", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.938086, - 47.372793 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING N-1 SAVENAY 5", - "ref": "FRCPIE6609185", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429227, - 46.776249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY 4", - "ref": "FRCPIE6610375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429227, - 46.776249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION SUPER U BELLEVIGNY 4", - "ref": "FRCPIE6610385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19641119, - 47.39251545 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GIZEUX 15744 - Place de la Mairie", - "ref": "FRS37E1574", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.538582, - 47.14435 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT EPAIN 1565", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526151, - 44.587586 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LES ARCHES BORNE 1", - "ref": "FRCPIE6612645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35329, - 45.8641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Culhat", - "ref": "FRIENE007701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35329, - 45.8641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Culhat", - "ref": "FRIENE007701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35329, - 45.8641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Culhat", - "ref": "FRIENE007702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35329, - 45.8641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Culhat", - "ref": "FRIENE007702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186173, - 48.044019 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", - "ref": "FRS28E13731", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186173, - 48.044019 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", - "ref": "FRS28E13731", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.39297, - 47.425562 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CLERE LES PINS 1563", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.39297, - 47.425562 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CLERE LES PINS 1563", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7043, - 43.381839 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PACAZAC BORNE 2", - "ref": "FRCPIE6612695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7043, - 43.381839 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PACAZAC BORNE 2", - "ref": "FRCPIE6612695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7043, - 43.381839 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PACAZAC BORNE 2", - "ref": "FRCPIE6612705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7043, - 43.381839 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PACAZAC BORNE 2", - "ref": "FRCPIE6612705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.538582, - 47.14435 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT EPAIN 1565", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.143177, - 49.050615 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "3C CLIM ST OUEN", - "ref": "FRCPIE6612625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47377385, - 47.31067554 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLERES 1567", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47377385, - 47.31067554 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLERES 1567", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.030155, - 47.433521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARGE 1558", - "ref": "FRS37E155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.030155, - 47.433521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARGE 1558", - "ref": "FRS37E157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.770931, - 48.330962 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HPSM BORNE 1 ET 2", - "ref": "FRCPIE6613045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.770931, - 48.330962 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HPSM BORNE 1 ET 2", - "ref": "FRCPIE6613045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.770931, - 48.330962 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HPSM BORNE 1 ET 2", - "ref": "FRCPIE6665345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.770931, - 48.330962 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HPSM BORNE 1 ET 2", - "ref": "FRCPIE6665345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.421643, - 47.382828 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAZIERES DE TOURAINE 15734 - Rue du Stade", - "ref": "FRS37E1573", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.421643, - 47.382828 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAZIERES DE TOURAINE 15734 - Rue du Stade", - "ref": "FRS37E1573", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.825341, - 50.450746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED LENS", - "ref": "FRCPIE6613825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.825341, - 50.450746 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED LENS", - "ref": "FRCPIE6613825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.874505, - 46.834555 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS U LOCATION", - "ref": "FRCPIE6614125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526151, - 44.587586 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LES ARCHES BORNE 1", - "ref": "FRCPIE6612645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.143177, - 49.050615 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "3C CLIM ST OUEN", - "ref": "FRCPIE6612625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331183, - 43.477012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MURET", - "ref": "FRCPIE6610395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331183, - 43.477012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MURET", - "ref": "FRCPIE6610395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.135338, - 48.079532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", - "ref": "FRS28E13729", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.135338, - 48.079532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", - "ref": "FRS28E13729", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.356001, - 48.752678 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT DREUX", - "ref": "FRCPIE6612085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.356001, - 48.752678 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT DREUX", - "ref": "FRCPIE6612085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.90823621, - 47.58978807 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU RENAULT 1551 - Avenue du Maine", - "ref": "FRS37E155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.90823621, - 47.58978807 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU RENAULT 1551 - Avenue du Maine", - "ref": "FRS37E155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.864158, - 50.261485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Wancourt Est", - "ref": "FRFASE331010", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE4035", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6263851, - 47.40395902 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FONDETTES 1376 - Gustave Eiffel", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6263851, - 47.40395902 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FONDETTES 1376 - Gustave Eiffel", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91908306, - 47.54254534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Auzouer de Touraine - 53927 - Pl Général Leclerc", - "ref": "FRS37E5392", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.031039, - 49.289838 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CAUDEBEC", - "ref": "FRCPIE6612515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.031039, - 49.289838 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CAUDEBEC", - "ref": "FRCPIE6612515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319486, - 46.857443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", - "ref": "FRS18E20209", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319486, - 46.857443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", - "ref": "FRS18E20209", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE40350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE40350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE40350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE40350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE40350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78140646, - 44.51378472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Est", - "ref": "FRIONE40350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.727834, - 47.368329 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AVERTIN 1442", - "ref": "FRS37E156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.727834, - 47.368329 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AVERTIN 1442", - "ref": "FRS37E144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.429779, - 44.901007 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AURILLAC", - "ref": "FRCPIE6609045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.405298, - 43.275477 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED PHOCEA", - "ref": "FRCPIE6604555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.615962, - 43.00587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT FOIX", - "ref": "FRCPIE6604875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10312551, - 47.22885084 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE LIEGE 1268", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10312551, - 47.22885084 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE LIEGE 1268", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.624051, - 44.176503 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AGEN", - "ref": "FRCPIE6604805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.624051, - 44.176503 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AGEN", - "ref": "FRCPIE6604805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.156034, - 45.679959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de la Plaine du Forez", - "ref": "FRFASE330040", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.405298, - 43.275477 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED PHOCEA", - "ref": "FRCPIE6604555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.821276, - 48.321282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Nogent-le-Rotrou - Place St Pol -128531", - "ref": "FRS28E17649", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.610285, - 43.466186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ROUSSET", - "ref": "FRCPIE6604545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.616726, - 47.415343 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LE FRESNE BORNE 1", - "ref": "FRCPIE6606665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.616726, - 47.415343 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LE FRESNE BORNE 1", - "ref": "FRCPIE6606665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.922786, - 42.691616 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CABESTANY", - "ref": "FRCPIE6606675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.922786, - 42.691616 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CABESTANY", - "ref": "FRCPIE6606675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326459, - 48.888132 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED PARIS 18", - "ref": "FRCPIE6606745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105773, - 46.159016 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA ROCHELLE 2", - "ref": "FRCPIE6606795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105773, - 46.159016 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA ROCHELLE 2", - "ref": "FRCPIE6606795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105773, - 46.159016 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA ROCHELLE 2", - "ref": "FRCPIE6606835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105773, - 46.159016 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA ROCHELLE 2", - "ref": "FRCPIE6606835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82953, - 46.305505 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PANORAMA 360 HOTEL & SPA 2", - "ref": "FRCPIE6606875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82953, - 46.305505 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PANORAMA 360 HOTEL & SPA 2", - "ref": "FRCPIE6606875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82953, - 46.305505 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PANORAMA 360 HOTEL & SPA 2", - "ref": "FRCPIE6619845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.615962, - 43.00587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT FOIX", - "ref": "FRCPIE6604875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112229, - 49.397739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ROUEN SUD", - "ref": "FRCPIE6605035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.429779, - 44.901007 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AURILLAC", - "ref": "FRCPIE6609045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE4095", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40952", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40952", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40952", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40951", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40951", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40951", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40951", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.112229, - 49.397739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ROUEN SUD", - "ref": "FRCPIE6605035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.642773, - 43.471439 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rousset", - "ref": "FRIONE40950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145681, - 48.083941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHAUMONT", - "ref": "FRCPIE6606645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145681, - 48.083941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHAUMONT", - "ref": "FRCPIE6606645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110755, - 44.119222 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ALES", - "ref": "FRCPIE6606395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110755, - 44.119222 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ALES", - "ref": "FRCPIE6606395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157741, - 49.154069 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED METZ", - "ref": "FRCPIE6605945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157741, - 49.154069 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED METZ", - "ref": "FRCPIE6605945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.337966, - 44.431026 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JANUS RUOMS BORNE 1", - "ref": "FRCPIE6605205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.337966, - 44.431026 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JANUS RUOMS BORNE 1", - "ref": "FRCPIE6605205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.142548, - 43.658197 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CAGNES", - "ref": "FRCPIE6605175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.142548, - 43.658197 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CAGNES", - "ref": "FRCPIE6605175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82953, - 46.305505 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PANORAMA 360 HOTEL & SPA 2", - "ref": "FRCPIE6619845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.444554, - 48.980736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT GONESSE", - "ref": "FRCPIE6606905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.444554, - 48.980736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT GONESSE", - "ref": "FRCPIE6606905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995569, - 47.328019 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLERE 1387 - Camping", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.379129, - 43.488465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AIX", - "ref": "FRCPIE6608085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.143419, - 47.253068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERE LA RONDE 1371 - Château", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.143419, - 47.253068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERE LA RONDE 1371 - Château", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70095375, - 47.47147261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHANCEAUX SUR CHOISILLE 1373", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70095375, - 47.47147261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHANCEAUX SUR CHOISILLE 1373", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.729746, - 44.395027 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLENEUVE-LOT", - "ref": "FRCPIE6608185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.729746, - 44.395027 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLENEUVE-LOT", - "ref": "FRCPIE6608185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47534965, - 47.6156073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CHRISTOPHE SUR LE NAIS 1383", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47534965, - 47.6156073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CHRISTOPHE SUR LE NAIS 1383", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573516, - 48.639513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS ECO PEPINIERE 3", - "ref": "FRCPIE6608315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573516, - 48.639513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS ECO PEPINIERE 3", - "ref": "FRCPIE6608325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573516, - 48.639513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS ECO PEPINIERE 3", - "ref": "FRCPIE6608335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573516, - 48.639513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS ECO PEPINIERE 3", - "ref": "FRCPIE6608345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995569, - 47.328019 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLERE 1387 - Camping", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.916358, - 48.627291 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMBLORE - Le Plessis -176251", - "ref": "FRS28E17625", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.136289, - 49.354737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT THIONVILLE", - "ref": "FRCPIE6608655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.136289, - 49.354737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT THIONVILLE", - "ref": "FRCPIE6608655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.717106, - 48.432041 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU PLOUARZE BORNE 2", - "ref": "FRCPIE6608795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.717106, - 48.432041 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU PLOUARZE BORNE 2", - "ref": "FRCPIE6608795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.717106, - 48.432041 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU PLOUARZE BORNE 2", - "ref": "FRCPIE6608805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.717106, - 48.432041 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU PLOUARZE BORNE 2", - "ref": "FRCPIE6608805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545929, - 48.793333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CHENNEVIÈRES", - "ref": "FRCPIE6608845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545929, - 48.793333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CHENNEVIÈRES", - "ref": "FRCPIE6608845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.975747, - 43.650761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-AUNES", - "ref": "FRCPIE6608885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.975747, - 43.650761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-AUNES", - "ref": "FRCPIE6608885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9840703, - 47.54256978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SUPER CHARGEUR 1414 - CHÂTEAU RENAULT A10", - "ref": "FRS37E141", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170199, - 48.457568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ETAMPES", - "ref": "FRCPIE6609035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170199, - 48.457568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ETAMPES", - "ref": "FRCPIE6609035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.379129, - 43.488465 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AIX", - "ref": "FRCPIE6608085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190249, - 47.257237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERE LA RONDE1369 - Salle Socioculturel", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190249, - 47.257237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERE LA RONDE1369 - Salle Socioculturel", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190003, - 47.261202 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERE LA RONDE 1367 - Alfred de Vigny", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.916358, - 48.627291 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMBLORE - Le Plessis -176251", - "ref": "FRS28E17625", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681095, - 47.820037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U RAPIDE", - "ref": "FRCPIE6540205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681095, - 47.820037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U RAPIDE", - "ref": "FRCPIE6540205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681095, - 47.820037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U RAPIDE", - "ref": "FRCPIE6540225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681095, - 47.820037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U RAPIDE", - "ref": "FRCPIE6540225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681095, - 47.820037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U RAPIDE", - "ref": "FRCPIE6541535", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.844593, - 47.350406 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AZAY SUR CHER 1362", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.844593, - 47.350406 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AZAY SUR CHER 1362", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995564, - 47.319767 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLERE 1363 - Chardonnerets", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995564, - 47.319767 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLERE 1363 - Chardonnerets", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.366567, - 49.372476 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SOISSONS", - "ref": "FRCPIE6607265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.366567, - 49.372476 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SOISSONS", - "ref": "FRCPIE6607265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.586529, - 48.764309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Comercy rue de la gare 134164", - "ref": "FRS55E13415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.586529, - 48.764309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Comercy rue de la gare 134164", - "ref": "FRS55E13415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.586529, - 48.764309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Comercy rue de la gare 134164", - "ref": "FRS55E13416", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.586529, - 48.764309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Comercy rue de la gare 134164", - "ref": "FRS55E13416", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.589069, - 49.632953 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHERBOURG", - "ref": "FRCPIE6607385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.589069, - 49.632953 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHERBOURG", - "ref": "FRCPIE6607385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.96157027, - 46.83186155 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOSSAY SUR CLAISE 1365", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.96157027, - 46.83186155 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOSSAY SUR CLAISE 1365", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.836032, - 50.943529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CALAIS _", - "ref": "FRCPIE6542695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.836032, - 50.943529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CALAIS _", - "ref": "FRCPIE6542695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.040193, - 43.14541 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOULON", - "ref": "FRCPIE6607575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.040193, - 43.14541 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOULON", - "ref": "FRCPIE6607575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85791, - 48.970373 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AUBERGENVILLE", - "ref": "FRCPIE6607645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85791, - 48.970373 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AUBERGENVILLE", - "ref": "FRCPIE6607645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190003, - 47.261202 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERE LA RONDE 1367 - Alfred de Vigny", - "ref": "FRS37E136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.874505, - 46.834555 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS U LOCATION", - "ref": "FRCPIE6614125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19641119, - 47.39251545 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GIZEUX 15744 - Place de la Mairie", - "ref": "FRS37E1574", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.244193, - 48.579345 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUNEUF EN THYMERAIS - Jean Moulin - 134302", - "ref": "FRS28E13430", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.024159, - 48.569637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SENONCHES - Rue de la ferté Vidame - 134317", - "ref": "FRS28E13431", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.583614, - 48.547241 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST PIAT - Place Vauvillers - 130523", - "ref": "FRS28E13052", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.557893, - 44.311724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "AJM ENERGIE BUROCLUB", - "ref": "FRCPIE6660505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.557893, - 44.311724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "AJM ENERGIE BUROCLUB", - "ref": "FRCPIE6660505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03217, - 48.560768 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SENONCHES - Rue de Verdun - 134278", - "ref": "FRS28E13427", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.465216, - 48.417688 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUISANT - Avenue de la république - 137351", - "ref": "FRS28E13735", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.987015, - 47.426765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "POCE SUR CISSE 3105 - Route des Industries", - "ref": "FRS37E310", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.987015, - 47.426765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "POCE SUR CISSE 3105 - Route des Industries", - "ref": "FRS37E310", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.718402, - 47.388512 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", - "ref": "FRS37E310", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.718402, - 47.388512 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", - "ref": "FRS37E310", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.445571, - 47.432981 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", - "ref": "FRS41E20646", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.445571, - 47.432981 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", - "ref": "FRS41E20646", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.445571, - 47.432981 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", - "ref": "FRS41E20648", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.445571, - 47.432981 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", - "ref": "FRS41E20648", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273798, - 49.167909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Nord", - "ref": "FRIONE41490", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.027419, - 47.322482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273798, - 49.167909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Nord", - "ref": "FRIONE41490", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273798, - 49.167909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Nord", - "ref": "FRIONE41490", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273798, - 49.167909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Nord", - "ref": "FRIONE41490", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273798, - 49.167909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Giberville Nord", - "ref": "FRIONE4149", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6541595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6541595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6620655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6620655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.027419, - 47.322482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.766898, - 44.394767 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JULSOL BORNE 1", - "ref": "FRCPIE6626215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959916, - 48.648549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED ST DIZIER", - "ref": "FRCPIE6624885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084551, - 47.314136 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", - "ref": "FRS37E277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.084551, - 47.314136 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", - "ref": "FRS37E277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91895, - 47.330502 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ATHEE SUR CHER 2772 - ZA de la Ferriere", - "ref": "FRS37E277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91895, - 47.330502 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ATHEE SUR CHER 2772 - ZA de la Ferriere", - "ref": "FRS37E277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.840599, - 47.257093 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TAUXIGNY 2782 - ZA Node Park", - "ref": "FRS37E278", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.840599, - 47.257093 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TAUXIGNY 2782 - ZA Node Park", - "ref": "FRS37E278", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.865448, - 47.268447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", - "ref": "FRS41E292", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.865448, - 47.268447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", - "ref": "FRS41E292", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.797433, - 47.365592 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEHERVIERS 2926 - Rue de la Gare", - "ref": "FRS41E292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.797433, - 47.365592 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEHERVIERS 2926 - Rue de la Gare", - "ref": "FRS41E292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681046, - 47.500549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", - "ref": "FRS41E292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.681046, - 47.500549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", - "ref": "FRS41E292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959916, - 48.648549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED ST DIZIER", - "ref": "FRCPIE6624885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.526321, - 47.911214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", - "ref": "FRS41E293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.766898, - 44.394767 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JULSOL BORNE 1", - "ref": "FRCPIE6626215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.526321, - 47.911214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", - "ref": "FRS41E293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.233368, - 47.902339 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MOREE 2935 - Place du 8 Mai", - "ref": "FRS41E293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.233368, - 47.902339 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MOREE 2935 - Place du 8 Mai", - "ref": "FRS41E293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.455906, - 47.512561 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COUR CHEVERNY 2937 - Avenue Anciens combattants", - "ref": "FRS41E293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.455906, - 47.512561 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COUR CHEVERNY 2937 - Avenue Anciens combattants", - "ref": "FRS41E293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355931, - 47.573036 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", - "ref": "FRS41E294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355931, - 47.573036 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", - "ref": "FRS41E294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.547499, - 47.547449 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLE PONT PIERRE 2947 - Place de la mairie", - "ref": "FRS37E294", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.547499, - 47.547449 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLE PONT PIERRE 2947 - Place de la mairie", - "ref": "FRS37E294", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.388022, - 47.52473 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CELLETTES 2958 - Rue de l'Angevinière", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.388022, - 47.52473 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CELLETTES 2958 - Rue de l'Angevinière", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.766898, - 44.394767 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JULSOL BORNE 1", - "ref": "FRCPIE6626205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.766898, - 44.394767 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JULSOL BORNE 1", - "ref": "FRCPIE6626205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17863, - 48.666908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014", - "ref": "FRN54E18701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.845654, - 43.11634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SIX-FOURS", - "ref": "FRCPIE6666475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9696, - 47.045402 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT SENOCH 3571 - Rue Charles de Gaulle", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9696, - 47.045402 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT SENOCH 3571 - Rue Charles de Gaulle", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4014, - 47.592044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BRANFERE BORNE 2", - "ref": "FRCPIE6712375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4014, - 47.592044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BRANFERE BORNE 2", - "ref": "FRCPIE6712375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4014, - 47.592044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BRANFERE BORNE 2", - "ref": "FRCPIE6712385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4014, - 47.592044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BRANFERE BORNE 2", - "ref": "FRCPIE6712385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21797, - 47.092181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LOCHE SUR INDROIS 3573 - Place du Mail", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21797, - 47.092181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LOCHE SUR INDROIS 3573 - Place du Mail", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5283, - 47.649058 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEBOURG 3578 - Place de la mairie", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5283, - 47.649058 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEBOURG 3578 - Place de la mairie", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.859204, - 46.849213 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CHALLANS", - "ref": "FRCPIE6627985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.859204, - 46.849213 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CHALLANS", - "ref": "FRCPIE6627985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.845654, - 43.11634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SIX-FOURS", - "ref": "FRCPIE6666475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389685, - 48.675894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VIRY-CHATILLON", - "ref": "FRCPIE6628885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.626942, - 47.277408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTS 3569 - Place de la Fontaine", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389685, - 48.675894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VIRY-CHATILLON", - "ref": "FRCPIE6628885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075448, - 47.81808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT OUEN 3717 - Allée du Parc de Bel Air", - "ref": "FRS41E371", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.075448, - 47.81808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT OUEN 3717 - Allée du Parc de Bel Air", - "ref": "FRS41E371", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.445425, - 43.914529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MONT-DE-MARSAN", - "ref": "FRCPIE6629175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.445425, - 43.914529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MONT-DE-MARSAN", - "ref": "FRCPIE6629175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601075", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601075", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6605975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6605975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.626942, - 47.277408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTS 3569 - Place de la Fontaine", - "ref": "FRS37E357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.51155, - 47.169884 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUIL 3567 - Parking Impasse des Lizas", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589469, - 48.777083 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 6", - "ref": "FRCPIE6627595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57681, - 46.963507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELIGNY 3557 - Place Drapeau Caillault", - "ref": "FRS37E355", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57681, - 46.963507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELIGNY 3557 - Place Drapeau Caillault", - "ref": "FRS37E355", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.73106, - 47.063082 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURNAN 3559 - Rue Principale", - "ref": "FRS37E355", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.73106, - 47.063082 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURNAN 3559 - Rue Principale", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.114696, - 47.280285 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.114696, - 47.280285 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.27542, - 47.112003 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIGRE 3563 - Rue Saint Martin", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.27542, - 47.112003 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIGRE 3563 - Rue Saint Martin", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.446263, - 47.676153 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Suèvres", - "ref": "FRIENE008202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6605985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6605985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6606025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6606025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94856, - 47.487114 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94856, - 47.487114 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", - "ref": "FRS37E356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.446263, - 47.676153 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Suèvres", - "ref": "FRIENE008201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.446263, - 47.676153 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Suèvres", - "ref": "FRIENE008201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.446263, - 47.676153 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Suèvres", - "ref": "FRIENE008202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.730994, - 48.553416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DOL-DE-BRETAGNE", - "ref": "FRCPIE6623635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.730994, - 48.553416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DOL-DE-BRETAGNE", - "ref": "FRCPIE6623635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77246, - 47.38737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", - "ref": "FRS37E269", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02235481, - 47.41472228 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AMBOISE 1688 - Rue André Huard", - "ref": "FRS37E168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6623855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6623865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6623865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.323531, - 47.017299 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RICHELIEU 16553 - Route de Chinon", - "ref": "FRS37E1655", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.323531, - 47.017299 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RICHELIEU 16553 - Route de Chinon", - "ref": "FRS37E1655", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396948, - 49.20068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUSAINTCONTEST BORNE 2", - "ref": "FRCPIE6681485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396948, - 49.20068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUSAINTCONTEST BORNE 2", - "ref": "FRCPIE6681485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396948, - 49.20068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUSAINTCONTEST BORNE 2", - "ref": "FRCPIE6681505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396948, - 49.20068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUSAINTCONTEST BORNE 2", - "ref": "FRCPIE6681505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66912, - 47.42307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", - "ref": "FRS37E1678", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66912, - 47.42307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", - "ref": "FRS37E1678", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1842, - 48.645181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR NANCY", - "ref": "FRCPIE6619675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1842, - 48.645181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR NANCY", - "ref": "FRCPIE6619675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02235481, - 47.41472228 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AMBOISE 1688 - Rue André Huard", - "ref": "FRS37E168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6623845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.985279, - 46.913225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARNIZAY 1690", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.985279, - 46.913225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARNIZAY 1690", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.046251, - 47.332938 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", - "ref": "FRS37E1561", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.046251, - 47.332938 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.80232797, - 47.39714715 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.80232797, - 47.39714715 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81891078, - 47.3788355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81891078, - 47.3788355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.968669, - 47.422511 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.968669, - 47.422511 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.357446, - 46.198169 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-MARTIN-DE-RE", - "ref": "FRCPIE6620005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.357446, - 46.198169 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-MARTIN-DE-RE", - "ref": "FRCPIE6620005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91261509, - 47.59588842 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6623855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6623845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77246, - 47.38737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", - "ref": "FRS37E269", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150316, - 48.304113 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mirecourt", - "ref": "FRIENE007102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17863, - 48.666908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014", - "ref": "FRN54E18701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.023238, - 46.881979 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CADETEL BORNE PARKING", - "ref": "FRCPIE6615325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.736871, - 50.738909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "Logis Belle Hôtel - 59270 - 2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.777857, - 47.585916 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT EN GATINES 1581", - "ref": "FRS37E158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.777857, - 47.585916 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT EN GATINES 1581", - "ref": "FRS37E158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.128424, - 48.229805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U 72170 BORNE 2", - "ref": "FRCPIE6651955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.128424, - 48.229805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U 72170 BORNE 2", - "ref": "FRCPIE6651955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.128424, - 48.229805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U 72170 BORNE 2", - "ref": "FRCPIE6651965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.128424, - 48.229805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U 72170 BORNE 2", - "ref": "FRCPIE6651965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24028784, - 48.44961266 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURVILLE SUR EURE - 1 Rue Des Planches - 137731", - "ref": "FRS28E20057", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150316, - 48.304113 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mirecourt", - "ref": "FRIENE007101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150316, - 48.304113 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mirecourt", - "ref": "FRIENE007101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150316, - 48.304113 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mirecourt", - "ref": "FRIENE007102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6618695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.514194, - 48.095883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VARIZE - Rue du Châteaux - 130758", - "ref": "FRS28E13075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.527064, - 48.5392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MERCK SITES EUR P4-02", - "ref": "FRCPIE6727745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.527064, - 48.5392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MERCK SITES EUR P4-02", - "ref": "FRCPIE6727745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.527064, - 48.5392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MERCK SITES EUR P4-02", - "ref": "FRCPIE6727755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.527064, - 48.5392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MERCK SITES EUR P4-02", - "ref": "FRCPIE6727755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47347, - 48.447741 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAINVILLIERS - Rue de la république - 137395", - "ref": "FRS28E13739", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059549, - 47.46819359 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CANGEY 1643", - "ref": "FRS37E164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.059549, - 47.46819359 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CANGEY 1643", - "ref": "FRS37E164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.23937643, - 47.16950518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 1644 - Parking de la forteresse", - "ref": "FRS37E164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.23937643, - 47.16950518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 1644 - Parking de la forteresse", - "ref": "FRS37E164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.890957, - 47.421157 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOIZAY 1646", - "ref": "FRS37E164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.890957, - 47.421157 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOIZAY 1646", - "ref": "FRS37E164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4275, - 48.093584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 4", - "ref": "FRCPIE6618695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91261509, - 47.59588842 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.226074, - 47.280291 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RESTIGNE 1701", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.226074, - 47.280291 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RESTIGNE 1701", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.820331, - 47.042476 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIGUEIL 2579 - Allée des Cyclamens", - "ref": "FRS37E258", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.902142, - 47.587438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", - "ref": "FRS37E184", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.902142, - 47.587438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", - "ref": "FRS37E184", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.337841, - 46.916074 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PONTARLIER", - "ref": "FRCPIE6621925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.337841, - 46.916074 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PONTARLIER", - "ref": "FRCPIE6621925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252231, - 47.163506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 2572 - Parking de la gare", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252231, - 47.163506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 2572 - Parking de la gare", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91056, - 47.51268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLE LE LIERRE 2575 - Place de la mairie", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91056, - 47.51268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLE LE LIERRE 2575 - Place de la mairie", - "ref": "FRS37E277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40336, - 47.049277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40336, - 47.049277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", - "ref": "FRS37E259", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67069575, - 47.56963676 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT LA RONCE 2577 - Rue des Prés", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67069575, - 47.56963676 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT LA RONCE 2577 - Rue des Prés", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.820331, - 47.042476 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIGUEIL 2579 - Allée des Cyclamens", - "ref": "FRS37E257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.337525, - 48.677313 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AVRANCHES", - "ref": "FRCPIE6623475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.814847, - 47.357802 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERETZ 1698", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.337525, - 48.677313 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AVRANCHES", - "ref": "FRCPIE6623475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88746, - 46.841416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOUSSAY 2681 - Rue Notre Dame des Champs", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88746, - 46.841416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOUSSAY 2681 - Rue Notre Dame des Champs", - "ref": "FRS37E269", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.976555, - 47.424187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 1287 - Avenue du Centre", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.976555, - 47.424187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 1287 - Avenue du Centre", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45328, - 47.022995 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUZE 2682 - Parking derrière la mairie", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45328, - 47.022995 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUZE 2682 - Parking derrière la mairie", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.438924, - 47.363137 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.438924, - 47.363137 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.631847, - 47.495732 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.631847, - 47.495732 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", - "ref": "FRS37E268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.183346, - 47.195244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT EN VERON 2690 - Rue du Parc", - "ref": "FRS37E269", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.183346, - 47.195244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT EN VERON 2690 - Rue du Parc", - "ref": "FRS37E269", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.669537, - 47.409894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.669537, - 47.409894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.756788, - 44.512308 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANOIR LE ROURE BORNE 2", - "ref": "FRCPIE6621065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.756788, - 44.512308 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANOIR LE ROURE BORNE 2", - "ref": "FRCPIE6621065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.814847, - 47.357802 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERETZ 1698", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76171, - 47.383392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", - "ref": "FRS37E172", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76171, - 47.383392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", - "ref": "FRS37E172", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.773284, - 48.425225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VULAINES", - "ref": "FRCPIE6620685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.773284, - 48.425225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VULAINES", - "ref": "FRCPIE6620685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111411, - 47.281329 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPEIGNE LES BOIS 1737", - "ref": "FRS37E173", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111411, - 47.281329 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPEIGNE LES BOIS 1737", - "ref": "FRS37E173", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054163, - 48.9646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Changis sur Marne", - "ref": "FRFASE331110", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33295, - 43.980521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DRB BORNE 1", - "ref": "FRCPIE6620815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33295, - 43.980521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DRB BORNE 1", - "ref": "FRCPIE6620815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33295, - 43.980521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DRB BORNE 1", - "ref": "FRCPIE6620845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33295, - 43.980521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DRB BORNE 1", - "ref": "FRCPIE6620845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35220841, - 47.26778016 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIVARENNES 1830", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35220841, - 47.26778016 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIVARENNES 1830", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97706083, - 47.4194015 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 1832 - Rue d'Amboise", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97706083, - 47.4194015 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 1832 - Rue d'Amboise", - "ref": "FRS37E184", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.257426, - 47.507438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT DE LIN 1834", - "ref": "FRS37E183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.257426, - 47.507438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT DE LIN 1834", - "ref": "FRS37E184", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.756788, - 44.512308 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANOIR LE ROURE BORNE 2", - "ref": "FRCPIE6621055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.756788, - 44.512308 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANOIR LE ROURE BORNE 2", - "ref": "FRCPIE6621055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44041", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6738105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.070357, - 50.225478 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baralle", - "ref": "FRIONE44000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.070357, - 50.225478 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baralle", - "ref": "FRIONE4400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE40380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE40380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE40380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE40380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE40380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE40380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86500418, - 46.42090355 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mâcon Saint-Albain", - "ref": "FRIONE4038", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6564, - 47.3376 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", - "ref": "FRS37E590", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6564, - 47.3376 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", - "ref": "FRS37E590", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.642716, - 43.075236 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verniolle | Super U, Parc Commercial Delta-Sud", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772852, - 47.269214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 6", - "ref": "FRCPIE6746825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE40390", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE40390", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE40390", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE40390", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE40390", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE40390", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76685137, - 46.13428529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Taponas", - "ref": "FRIONE4039", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268863, - 43.618817 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WELDOM CASTRES BORNE 1", - "ref": "FRCPIE6609815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268863, - 43.618817 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WELDOM CASTRES BORNE 1", - "ref": "FRCPIE6609815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.070357, - 50.225478 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baralle", - "ref": "FRIONE44000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.242347, - 48.58155 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUNEUF EN THYMERAIS - Halles - 134333", - "ref": "FRS28E13433", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54317, - 50.83325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Winnezeele", - "ref": "FRIENE004301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40054, - 49.194108 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Périers", - "ref": "FRIENE003901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.166865, - 47.807101 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Nord", - "ref": "FRIONE40330", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.166865, - 47.807101 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Nord", - "ref": "FRIONE40330", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.166865, - 47.807101 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Nord", - "ref": "FRIONE4033", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.126858, - 47.237775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", - "ref": "FRS37E552", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.126858, - 47.237775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", - "ref": "FRS37E552", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.916704, - 47.32298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Athée sur Cher 10838 - Place de la Mairie 2", - "ref": "FRS37E1083", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.916704, - 47.32298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Athée sur Cher 10838 - Place de la Mairie 2", - "ref": "FRS37E1083", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.990385, - 43.423878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cambarette Nord", - "ref": "FRIONE40450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.990385, - 43.423878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cambarette Nord", - "ref": "FRIONE40450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.990385, - 43.423878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cambarette Nord", - "ref": "FRIONE40450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.990385, - 43.423878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cambarette Nord", - "ref": "FRIONE40450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.990385, - 43.423878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cambarette Nord", - "ref": "FRIONE4045", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40054, - 49.194108 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Périers", - "ref": "FRIENE003901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40054, - 49.194108 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Périers", - "ref": "FRIENE003902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.097127, - 49.110221 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SARREGUEMINES", - "ref": "FRCPIE6608715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40054, - 49.194108 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Périers", - "ref": "FRIENE003902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.69377, - 48.32822 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOISVILLE LA SAINT PERE - Pl République - 129052", - "ref": "FRS28E12905", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608911, - 47.469991 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", - "ref": "FRS37E557", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608911, - 47.469991 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", - "ref": "FRS37E558", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65359, - 47.03591 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVORD - Bibliothèque -112685", - "ref": "FRS18E20635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65359, - 47.03591 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVORD - Bibliothèque -112685", - "ref": "FRS18E20636", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208185, - 47.177919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", - "ref": "FRS37E565", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208185, - 47.177919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", - "ref": "FRS37E565", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379636, - 50.572433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Hilaire Cottes", - "ref": "FRFASE331040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379636, - 50.572433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Hilaire Cottes", - "ref": "FRFASE331040", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379636, - 50.572433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Hilaire Cottes", - "ref": "FRFASE331040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379636, - 50.572433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Hilaire Cottes", - "ref": "FRFASE331040", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.097127, - 49.110221 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SARREGUEMINES", - "ref": "FRCPIE6608715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456267, - 48.814144 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAINT-MAURICE ESPACES VERTS", - "ref": "FRCPIE6573995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54317, - 50.83325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Winnezeele", - "ref": "FRIENE004301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70014885, - 43.99972129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Sud", - "ref": "FRIONE40530", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46055656, - 48.67393864 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEMEUX SUR EURE - Rue de la libération - 134403", - "ref": "FRS28E13440", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.633507, - 48.992969 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rosny Nord", - "ref": "FRIONE43790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.633507, - 48.992969 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rosny Nord", - "ref": "FRIONE43790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.633507, - 48.992969 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rosny Nord", - "ref": "FRIONE43790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.633507, - 48.992969 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rosny Nord", - "ref": "FRIONE43790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.633507, - 48.992969 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rosny Nord", - "ref": "FRIONE4379", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856042, - 48.274978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plaines de Beauce", - "ref": "FRIONE45930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856042, - 48.274978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plaines de Beauce", - "ref": "FRIONE45930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856042, - 48.274978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plaines de Beauce", - "ref": "FRIONE45930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856042, - 48.274978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plaines de Beauce", - "ref": "FRIONE45930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856042, - 48.274978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plaines de Beauce", - "ref": "FRIONE45930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856042, - 48.274978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plaines de Beauce", - "ref": "FRIONE45930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87900427, - 48.4162747 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINVILLE - Place Farcot - 130159", - "ref": "FRS28E13015", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95679523, - 48.25514781 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT-LES-AUTELS - Rue du Gal. de Gaulle-139133", - "ref": "FRS28E13933", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.121673, - 47.508607 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ENVSN OUEST", - "ref": "FRCPIE6588515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.269339, - 46.203218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JALIX VLG BORNE 1", - "ref": "FRCPIE6733605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:00-18:00,Tu 07:00-18:00,We 07:00-18:00,Th 07:00-18:00,Fr 07:00-18:00,Sa 07:00-18:00", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.121673, - 47.508607 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ENVSN OUEST", - "ref": "FRCPIE6588515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.121673, - 47.508607 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ENVSN OUEST", - "ref": "FRCPIE6588525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.121673, - 47.508607 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ENVSN OUEST", - "ref": "FRCPIE6588525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.790964, - 47.502321 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONNAIE 6556 - Place Jean Baptiste Moreau", - "ref": "FRS37E655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.790964, - 47.502321 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONNAIE 6556 - Place Jean Baptiste Moreau", - "ref": "FRS37E655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.322448, - 47.44248 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", - "ref": "FRS37E655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.322448, - 47.44248 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", - "ref": "FRS37E655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3338292, - 47.1862674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Val de Saône", - "ref": "FRFASE330290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3338292, - 47.1862674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Val de Saône", - "ref": "FRFASE330290", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3338292, - 47.1862674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Val de Saône", - "ref": "FRFASE330290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3338292, - 47.1862674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Val de Saône", - "ref": "FRFASE330290", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.122062, - 47.509629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ENVSN NORD", - "ref": "FRCPIE6588565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.122062, - 47.509629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ENVSN NORD", - "ref": "FRCPIE6588565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.269339, - 46.203218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "JALIX VLG BORNE 1", - "ref": "FRCPIE6733605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:00-18:00,Tu 07:00-18:00,We 07:00-18:00,Th 07:00-18:00,Fr 07:00-18:00,Sa 07:00-18:00", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8678, - 42.684685 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PERPIGNAN", - "ref": "FRCPIE6634095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54317, - 50.83325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Winnezeele", - "ref": "FRIENE004302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399705, - 45.462082 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-ETIENNE3", - "ref": "FRCPIE6530215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54317, - 50.83325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Winnezeele", - "ref": "FRIENE004302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48407805, - 48.44726082 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Place Chatelet - 134784", - "ref": "FRS28E13478", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.781369, - 47.28464 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ESVRES SUR INDRE 6023 - RUE NATIONALE", - "ref": "FRS37E602", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.781369, - 47.28464 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ESVRES SUR INDRE 6023 - RUE NATIONALE", - "ref": "FRS37E602", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42548, - 48.817955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAINT-MAURICE BORNE 2", - "ref": "FRCPIE6575095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42548, - 48.817955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAINT-MAURICE BORNE 2", - "ref": "FRCPIE6658765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.543986, - 47.486261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ANGERS", - "ref": "FRCPIE6741345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.543986, - 47.486261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ANGERS", - "ref": "FRCPIE6741345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22454, - 47.813445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Noidant", - "ref": "FRIONE40910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22454, - 47.813445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Noidant", - "ref": "FRIONE40910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22454, - 47.813445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Noidant", - "ref": "FRIONE40910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22454, - 47.813445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Noidant", - "ref": "FRIONE40910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22454, - 47.813445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Noidant", - "ref": "FRIONE4091", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399705, - 45.462082 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-ETIENNE3", - "ref": "FRCPIE6530215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8678, - 42.684685 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR PERPIGNAN", - "ref": "FRCPIE6634095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.205198, - 46.152422 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAG CHARGEPOINT BORNE 1", - "ref": "FRCPIE6741805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.205198, - 46.152422 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAG CHARGEPOINT BORNE 1", - "ref": "FRCPIE6741805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.205198, - 46.152422 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAG CHARGEPOINT BORNE 1", - "ref": "FRCPIE6741835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.205198, - 46.152422 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAG CHARGEPOINT BORNE 1", - "ref": "FRCPIE6741835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE43890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE43890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE43890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE43890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE43890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE43890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089531, - 43.216129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Narbonne-Vinassan Nord", - "ref": "FRIONE4389", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48274, - 47.10015 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St GERMAIN-DU-PUY - Eglise - 112986", - "ref": "FRS18E11298", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48274, - 47.10015 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St GERMAIN-DU-PUY - Eglise - 112986", - "ref": "FRS18E11298", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.166865, - 47.807101 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Nord", - "ref": "FRIONE40330", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.166865, - 47.807101 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Nord", - "ref": "FRIONE40330", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49908, - 47.444663 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PERNAY 5514 - RUE DE LA MAIRIE", - "ref": "FRS37E551", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.510935, - 47.341249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLANDRY 5060 - Parking du potager", - "ref": "FRS37E506", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929976, - 45.673865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mouxy", - "ref": "FRIONE40930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929976, - 45.673865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mouxy", - "ref": "FRIONE40930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929976, - 45.673865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mouxy", - "ref": "FRIONE40930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929976, - 45.673865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mouxy", - "ref": "FRIONE40930", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929976, - 45.673865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mouxy", - "ref": "FRIONE4093", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796718, - 45.775344 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA LYON 9 ABB", - "ref": "FRCPIE6497835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796718, - 45.775344 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA LYON 9 ABB", - "ref": "FRCPIE6497835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796718, - 45.775344 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA LYON 9 ABB", - "ref": "FRCPIE6501945", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703626, - 44.004071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Nord", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703626, - 44.004071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Nord", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703626, - 44.004071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Nord", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703626, - 44.004071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Nord", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703626, - 44.004071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Nord", - "ref": "FRIONE4025", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.510935, - 47.341249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLANDRY 5060 - Parking du potager", - "ref": "FRS37E520", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.669796, - 47.321429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", - "ref": "FRS41E501", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.762513, - 47.327701 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 5150", - "ref": "FRS41E515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.762513, - 47.327701 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 5150", - "ref": "FRS41E515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.828502, - 47.282663 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LANGON 5162 - Route de Mennetou-Sur-Cher", - "ref": "FRS41E516", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.828502, - 47.282663 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LANGON 5162 - Route de Mennetou-Sur-Cher", - "ref": "FRS41E516", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793041, - 45.774399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA ÉCULLY ABB", - "ref": "FRCPIE6505435", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578366, - 48.589346 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAINTENON - Parking rue D'Harleville - 128960", - "ref": "FRS28E12896", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.330665, - 48.112966 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARBOUE - Avenue Aristide Briand - 134835", - "ref": "FRS28E13483", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.395618, - 47.033837 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURCOUE 5206 - Rue de Richelieu", - "ref": "FRS37E520", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.395618, - 47.033837 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURCOUE 5206 - Rue de Richelieu", - "ref": "FRS37E520", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.788014, - 47.024564 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CUSSAY 5207 - Place du 8 Mai", - "ref": "FRS37E520", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.788014, - 47.024564 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CUSSAY 5207 - Place du 8 Mai", - "ref": "FRS37E520", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298291, - 48.793804 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SCI FONTENAY BORNE 1", - "ref": "FRCPIE6720865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298291, - 48.793804 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SCI FONTENAY BORNE 1", - "ref": "FRCPIE6720865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.669796, - 47.321429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", - "ref": "FRS41E501", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.740681, - 45.70124 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MEHARI COR BORNE SE", - "ref": "FRCPIE6495255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49908, - 47.444663 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PERNAY 5514 - RUE DE LA MAIRIE", - "ref": "FRS37E551", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95397, - 47.431032 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 4899 - Place des patis", - "ref": "FRS37E489", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.474702, - 43.640079 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF TOULOUSE", - "ref": "FRCPIE6744725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.390391, - 47.276707 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOYERS SUR CHER 4843 - Rue Saint Lazare", - "ref": "FRS41E484", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.390391, - 47.276707 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOYERS SUR CHER 4843 - Rue Saint Lazare", - "ref": "FRS41E484", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.222464, - 47.248199 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", - "ref": "FRS37E486", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.222464, - 47.248199 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", - "ref": "FRS37E486", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171846, - 47.501399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEUZAIN 4866 - Rue de l'Ecrevissière", - "ref": "FRS41E486", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171846, - 47.501399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEUZAIN 4866 - Rue de l'Ecrevissière", - "ref": "FRS41E486", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503619, - 49.006164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 4", - "ref": "FRCPIE6741035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503619, - 49.006164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 4", - "ref": "FRCPIE6741035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.173305, - 47.49941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEUZAIN 4880 - Ruelle des Planches", - "ref": "FRS41E488", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.173305, - 47.49941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEUZAIN 4880 - Ruelle des Planches", - "ref": "FRS41E488", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.25007, - 47.52429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", - "ref": "FRS41E488", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.25007, - 47.52429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", - "ref": "FRS41E488", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95397, - 47.431032 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAZELLES NEGRON 4899 - Place des patis", - "ref": "FRS37E490", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.400757, - 47.276675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOYERS SUR CHER 4999 - Place des Guerriers", - "ref": "FRS41E500", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.7998 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VENISSIEUX", - "ref": "FRCPIE6745105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.7998 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VENISSIEUX", - "ref": "FRCPIE6745105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01733, - 47.68865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", - "ref": "FRS41E491", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01733, - 47.68865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", - "ref": "FRS41E491", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060181, - 47.794548 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4919 - Rue des Etats-unis", - "ref": "FRS41E491", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060181, - 47.794548 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4919 - Rue des Etats-unis", - "ref": "FRS41E492", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416839, - 47.613725 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CLAUDE DE DIRAY 4922", - "ref": "FRS41E492", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416839, - 47.613725 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CLAUDE DE DIRAY 4922", - "ref": "FRS41E492", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68782, - 47.75244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COUTURE SUR LOIR 4929-4930", - "ref": "FRS41E492", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68782, - 47.75244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COUTURE SUR LOIR 4929-4930", - "ref": "FRS41E493", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861458, - 47.751579 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", - "ref": "FRS41E493", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861458, - 47.751579 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", - "ref": "FRS41E493", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.400757, - 47.276675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOYERS SUR CHER 4999 - Place des Guerriers", - "ref": "FRS41E499", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.685096, - 45.214781 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE VINOUX", - "ref": "FRCPIE6635955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.685096, - 45.214781 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE VINOUX", - "ref": "FRCPIE6635955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26932, - 43.618714 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WELDOM CASTRES BORNE 2", - "ref": "FRCPIE6609805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6741515", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6741515", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6741535", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6741535", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26932, - 43.618714 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WELDOM CASTRES BORNE 2", - "ref": "FRCPIE6609805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6740885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6741075", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537008, - 43.247782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 5 DC", - "ref": "FRCPIE6741075", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.744771, - 47.545012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOUZILLY 5512 - RUE DU PRIEURE", - "ref": "FRS37E551", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.744771, - 47.545012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOUZILLY 5512 - RUE DU PRIEURE", - "ref": "FRS37E551", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001365, - 46.118881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHATILLON CHARLES RIVER 2", - "ref": "FRCPIE6675745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:00-20:00,Tu 06:00-20:00,We 06:00-20:00,Th 06:00-20:00,Fr 06:00-20:00,Sa 06:00-20:00,Su 06:00-20:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001365, - 46.118881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHATILLON CHARLES RIVER 2", - "ref": "FRCPIE6675745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:00-20:00,Tu 06:00-20:00,We 06:00-20:00,Th 06:00-20:00,Fr 06:00-20:00,Sa 06:00-20:00,Su 06:00-20:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001365, - 46.118881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHATILLON CHARLES RIVER 2", - "ref": "FRCPIE6675765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:00-20:00,Tu 06:00-20:00,We 06:00-20:00,Th 06:00-20:00,Fr 06:00-20:00,Sa 06:00-20:00,Su 06:00-20:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001365, - 46.118881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHATILLON CHARLES RIVER 2", - "ref": "FRCPIE6675765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:00-20:00,Tu 06:00-20:00,We 06:00-20:00,Th 06:00-20:00,Fr 06:00-20:00,Sa 06:00-20:00,Su 06:00-20:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE41290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE41290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE41290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE41290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE41290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE41290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8280004, - 45.27639194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Est", - "ref": "FRIONE4129", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225126, - 43.826979 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MSP CLARENSAC BORNE 1", - "ref": "FRCPIE6684665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225126, - 43.826979 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MSP CLARENSAC BORNE 1", - "ref": "FRCPIE6684665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1344, - 45.78501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CLERMONT-FER 1", - "ref": "FRCPIE6697565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1344, - 45.78501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CLERMONT-FER 1", - "ref": "FRCPIE6697565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.644529, - 48.599459 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HANCHES - Rue de la barre - 134752", - "ref": "FRS28E13475", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.988249, - 43.668879 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GERANIUMS OPIO BORNE 1", - "ref": "FRCPIE6755595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.988249, - 43.668879 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GERANIUMS OPIO BORNE 1", - "ref": "FRCPIE6755595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423609, - 43.29269 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MARSEILLE", - "ref": "FRCPIE6676265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423609, - 43.29269 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MARSEILLE", - "ref": "FRCPIE6676265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.872837, - 46.835669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS BORNE 1", - "ref": "FRCPIE6614465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.872837, - 46.835669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS BORNE 1", - "ref": "FRCPIE6614465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.872837, - 46.835669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS BORNE 1", - "ref": "FRCPIE6614505", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.872837, - 46.835669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS BORNE 1", - "ref": "FRCPIE6614515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.872837, - 46.835669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HU CHALLANS BORNE 1", - "ref": "FRCPIE6614515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.536712, - 43.247576 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 3 DC", - "ref": "FRCPIE6740725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70014885, - 43.99972129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Sud", - "ref": "FRIONE40530", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70014885, - 43.99972129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Sud", - "ref": "FRIONE40530", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262097, - 45.790201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 4", - "ref": "FRCPIE6752805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262372, - 45.790203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 1", - "ref": "FRCPIE6750405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262372, - 45.790203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 1", - "ref": "FRCPIE6750405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39293, - 47.09662 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parc Comitec - 93955", - "ref": "FRS18E9395", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39293, - 47.09662 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parc Comitec - 93955", - "ref": "FRS18E9395", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86274734, - 45.74865449 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ALPTIS 25CAT PLACE 35 36", - "ref": "FRCPIE6507275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86274734, - 45.74865449 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ALPTIS 25CAT PLACE 35 36", - "ref": "FRCPIE6507275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.392645, - 47.821051 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARCHENOIR 2930 - Route de Blois", - "ref": "FRS41E13515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.392645, - 47.821051 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARCHENOIR 2930 - Route de Blois", - "ref": "FRS41E13515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.415632, - 47.08144 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - LAHITOLLE - 96889", - "ref": "FRS18E9688", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.415632, - 47.08144 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - LAHITOLLE - 96889", - "ref": "FRS18E9689", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262097, - 45.790201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 4", - "ref": "FRCPIE6751445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262097, - 45.790201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 4", - "ref": "FRCPIE6751445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262097, - 45.790201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 4", - "ref": "FRCPIE6752805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262097, - 45.790201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 4", - "ref": "FRCPIE6752825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.638367, - 46.731131 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARENTON-du-Cher - Rue Nationale - 214305", - "ref": "FRS18E21430", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262097, - 45.790201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERUPDC BORNE 4", - "ref": "FRCPIE6752825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18557399, - 46.79318772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CELLE-CONDE - Mairie - 148843", - "ref": "FRS18E14884", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18557399, - 46.79318772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CELLE-CONDE - Mairie - 148843", - "ref": "FRS18E14884", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431281, - 49.06124 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 10", - "ref": "FRCPIE6726655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431281, - 49.06124 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 10", - "ref": "FRCPIE6726655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.385027, - 48.182481 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BONNEVAL - Promenade du Mail - 129287", - "ref": "FRS28E12928", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32158, - 47.06273 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE ST URSIN - Mairie - 108359", - "ref": "FRS18E10835", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32158, - 47.06273 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE ST URSIN - Mairie - 108359", - "ref": "FRS18E10836", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.042746, - 47.892491 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U LA SUZE BORNE 2", - "ref": "FRCPIE6553745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25506, - 47.31485 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUVY S/ BARANGEON - Mairie - 109655", - "ref": "FRS18E10965", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25506, - 47.31485 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUVY S/ BARANGEON - Mairie - 109655", - "ref": "FRS18E10965", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51529213, - 48.45013673 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Avenue Des Sablons - 129928", - "ref": "FRS28E12992", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19572406, - 47.35043589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCAY - Mairie - 109617", - "ref": "FRS18E10961", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.638367, - 46.731131 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARENTON-du-Cher - Rue Nationale - 214305", - "ref": "FRS18E21430", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390459, - 47.077214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Plateau d'Auron - 98368", - "ref": "FRS18E9836", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05005, - 47.16264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MEREAU - Place de la Mairie - 112328", - "ref": "FRS18E20136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623389, - 48.595821 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Domfront", - "ref": "FRIENE004901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6738105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431669, - 49.061392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 21", - "ref": "FRCPIE6726665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431669, - 49.061392 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 21", - "ref": "FRCPIE6726665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.005494, - 43.56734 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITM PUYLAURENS BRVE ITM 81", - "ref": "FRCPIE6761165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.005494, - 43.56734 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITM PUYLAURENS BRVE ITM 81", - "ref": "FRCPIE6761165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.481157, - 48.013685 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEMAURY - Place Saint Martin - 134823", - "ref": "FRS28E13482", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432073, - 49.061104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 63", - "ref": "FRCPIE6737415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390459, - 47.077214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Plateau d'Auron - 98368", - "ref": "FRS18E9836", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589824, - 43.061587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gourdan Polignan", - "ref": "FRIONE46060", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589824, - 43.061587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gourdan Polignan", - "ref": "FRIONE46060", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589824, - 43.061587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gourdan Polignan", - "ref": "FRIONE46060", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589824, - 43.061587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gourdan Polignan", - "ref": "FRIONE46060", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589824, - 43.061587 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gourdan Polignan", - "ref": "FRIONE4606", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.622504, - 48.102864 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CESSON-SEVIGNE", - "ref": "FRCPIE6682045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.622504, - 48.102864 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CESSON-SEVIGNE", - "ref": "FRCPIE6682045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430694, - 49.061634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 22", - "ref": "FRCPIE6726605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430694, - 49.061634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 22", - "ref": "FRCPIE6726605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430694, - 49.061634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 22", - "ref": "FRCPIE6736125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430694, - 49.061634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 22", - "ref": "FRCPIE6736125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430694, - 49.061634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 22", - "ref": "FRCPIE6736215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430694, - 49.061634 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 22", - "ref": "FRCPIE6736215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19572406, - 47.35043589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCAY - Mairie - 109617", - "ref": "FRS18E10961", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05005, - 47.16264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MEREAU - Place de la Mairie - 112328", - "ref": "FRS18E20136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70014885, - 43.99972129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Sud", - "ref": "FRIONE40530", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501811, - 47.30968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lochères", - "ref": "FRIONE41030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431084, - 49.061551 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 23", - "ref": "FRCPIE6736705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431084, - 49.061551 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 23", - "ref": "FRCPIE6736705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431084, - 49.061551 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 23", - "ref": "FRCPIE6736485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431084, - 49.061551 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 23", - "ref": "FRCPIE6736485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42903752, - 47.14505949 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FUSSY - La poste - 207176", - "ref": "FRS18E20717", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42903752, - 47.14505949 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FUSSY - La poste - 207176", - "ref": "FRS18E20717", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65022261, - 47.07331786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FARGES EN SEPTAINE - Mairie - 188336", - "ref": "FRS18E18833", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65022261, - 47.07331786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FARGES EN SEPTAINE - Mairie - 188336", - "ref": "FRS18E18833", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.439158, - 47.097181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THENEUIL 16754 - Grande Rue", - "ref": "FRS37E1675", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.446997, - 47.559254 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARGENT-sur-Sauldre - Place du Marché - 207811", - "ref": "FRS18E20781", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.446997, - 47.559254 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARGENT-sur-Sauldre - Place du Marché - 207811", - "ref": "FRS18E20781", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501811, - 47.30968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lochères", - "ref": "FRIONE4103", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501811, - 47.30968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lochères", - "ref": "FRIONE41030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501811, - 47.30968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lochères", - "ref": "FRIONE41030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431084, - 49.061551 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 23", - "ref": "FRCPIE6736785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501811, - 47.30968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lochères", - "ref": "FRIONE41030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.026326, - 47.601158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", - "ref": "FRS41E11772", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.026326, - 47.601158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", - "ref": "FRS41E11772", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03166, - 47.025656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURS-LES*BARRES - Grande Rue - 181472", - "ref": "FRS18E18147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03166, - 47.025656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURS-LES*BARRES - Grande Rue - 181472", - "ref": "FRS18E18147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.262646, - 47.839764 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPERU BORNE 3", - "ref": "FRCPIE6637895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.262646, - 47.839764 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPERU BORNE 3", - "ref": "FRCPIE6637895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.262646, - 47.839764 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPERU BORNE 3", - "ref": "FRCPIE6637885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.262646, - 47.839764 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPERU BORNE 3", - "ref": "FRCPIE6637885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768718, - 45.675954 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED BRIGNAIS", - "ref": "FRCPIE6634505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768718, - 45.675954 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED BRIGNAIS", - "ref": "FRCPIE6634505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20101, - 46.56209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUMEILLANT - Place de l'église - 182394", - "ref": "FRS18E18239", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20101, - 46.56209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUMEILLANT - Place de l'église - 182394", - "ref": "FRS18E18239", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431084, - 49.061551 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 23", - "ref": "FRCPIE6736785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84443388, - 47.14286071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GRACAY - Place Gapion - 206002", - "ref": "FRS18E20600", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461195, - 48.967538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 16", - "ref": "FRCPIE6609935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40725547, - 46.92545849 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LEVET - Mairie - 150932", - "ref": "FRS18E15093", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461195, - 48.967538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 16", - "ref": "FRCPIE6609935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461195, - 48.967538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 16", - "ref": "FRCPIE6609545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461195, - 48.967538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 16", - "ref": "FRCPIE6609545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307908, - 47.447922 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", - "ref": "FRS18E14751", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307908, - 47.447922 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", - "ref": "FRS18E14751", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49023, - 47.23177 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MENETOU-SALON - Place de la Mairie - 205372", - "ref": "FRS18E20537", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99115189, - 48.31185045 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THIRON-GARDAIS - Place du Marché - 130987", - "ref": "FRS28E13098", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28396022, - 47.10178143 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARMAGNE - Place de la mairie - 109050", - "ref": "FRS18E10905", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28396022, - 47.10178143 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARMAGNE - Place de la mairie - 109050", - "ref": "FRS18E10905", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30708873, - 47.52983244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAILLES 2956 - Rue des Cormiers", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30708873, - 47.52983244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAILLES 2956 - Rue des Cormiers", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.729634, - 47.111991 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOSSEE - 117836 - PLACE DE LA MAIRIE", - "ref": "FRS37E11783", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.729634, - 47.111991 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOSSEE - 117836 - PLACE DE LA MAIRIE", - "ref": "FRS37E11782", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40725547, - 46.92545849 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LEVET - Mairie - 150932", - "ref": "FRS18E15093", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84443388, - 47.14286071 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GRACAY - Place Gapion - 206002", - "ref": "FRS18E20600", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265967, - 47.00417 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St FLORENT SUR CHER - La Vigonnière - 179307", - "ref": "FRS18E17930", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265967, - 47.00417 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St FLORENT SUR CHER - La Vigonnière - 179307", - "ref": "FRS18E17930", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5261468, - 47.30317135 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HENRICHEMONT - Eglise - 113070", - "ref": "FRS18E11307", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5261468, - 47.30317135 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HENRICHEMONT - Eglise - 113070", - "ref": "FRS18E11307", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431005, - 49.061255 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 13", - "ref": "FRCPIE6736395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431005, - 49.061255 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 13", - "ref": "FRCPIE6736395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431005, - 49.061255 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 13", - "ref": "FRCPIE6736355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431005, - 49.061255 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 13", - "ref": "FRCPIE6736355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431005, - 49.061255 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 13", - "ref": "FRCPIE6736325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431005, - 49.061255 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 13", - "ref": "FRCPIE6736325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62672506, - 48.27051423 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOVES - Bd Maurice Violette - 134417", - "ref": "FRS28E13441", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.948825, - 46.951868 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA GUERCHE - Place Auguste FOURNIER - 151547", - "ref": "FRS18E20309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.948825, - 46.951868 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA GUERCHE - Place Auguste FOURNIER - 151547", - "ref": "FRS18E20309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6736765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6736765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6736465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.373159, - 47.268943 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AIGNAN 2954 - Place du Président Wilson", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598593, - 43.42185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Sud", - "ref": "FRIONE40280", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598593, - 43.42185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Sud", - "ref": "FRIONE4028", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13248609, - 48.40772761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE THIEULIN - Rue de la mairie - 134175", - "ref": "FRS28E13417", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63058, - 50.540027 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF BETHUNE", - "ref": "FRCPIE6742035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.239974, - 47.671469 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE VENDOMOISE 3803", - "ref": "FRS41E380", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.239974, - 47.671469 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE VENDOMOISE 3803", - "ref": "FRS41E380", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250812, - 50.755426 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF SAINT-OMER", - "ref": "FRCPIE6742055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250812, - 50.755426 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF SAINT-OMER", - "ref": "FRCPIE6742055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.373159, - 47.268943 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AIGNAN 2954 - Place du Président Wilson", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.184395, - 48.115521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATILLON EN DUNOIS - rue de Courtalain - 134208", - "ref": "FRS28E13420", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598593, - 43.42185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Sud", - "ref": "FRIONE40280", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.806087, - 47.533105 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", - "ref": "FRS41E16761", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.806087, - 47.533105 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", - "ref": "FRS41E16761", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.68742, - 48.52747 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GALLARDON - Résidence de la tour - 129289", - "ref": "FRS28E12928", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.239974, - 47.671469 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "La Chapelle-Vendômoise | Chemin des Coulisses", - "ref": "FRS41E380", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.239974, - 47.671469 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "La Chapelle-Vendômoise | Chemin des Coulisses", - "ref": "FRS41E380", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.494161, - 48.343955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DAMMARIE - Place de l'église - 137348", - "ref": "FRS28E13734", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37289291, - 49.3797657 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Charleval", - "ref": "FRIENE005601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37289291, - 49.3797657 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Charleval", - "ref": "FRIENE005601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37289291, - 49.3797657 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Charleval", - "ref": "FRIENE005602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37289291, - 49.3797657 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Charleval", - "ref": "FRIENE005602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598593, - 43.42185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Sud", - "ref": "FRIONE40280", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598593, - 43.42185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Sud", - "ref": "FRIONE40280", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6736465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332896, - 47.179275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Chêne d'Argent", - "ref": "FRFASE330280", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70014885, - 43.99972129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel Sud", - "ref": "FRIONE4053", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.930531, - 45.903285 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT-JUNIEN", - "ref": "FRCPIE6712645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.930531, - 45.903285 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT-JUNIEN", - "ref": "FRCPIE6712645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299441, - 48.993908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SOISY", - "ref": "FRCPIE6654305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299441, - 48.993908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SOISY", - "ref": "FRCPIE6654305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7737244, - 49.2429735 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire du Domaine d'Harcourt HW", - "ref": "FRSHEE79", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7737244, - 49.2429735 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire du Domaine d'Harcourt HW", - "ref": "FRSHEE79", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7737244, - 49.2429735 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire du Domaine d'Harcourt HW", - "ref": "FRSHEE80", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7737244, - 49.2429735 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire du Domaine d'Harcourt HW", - "ref": "FRSHEE80", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7737244, - 49.2429735 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire du Domaine d'Harcourt HW", - "ref": "FRSHEE80", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7737244, - 49.2429735 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire du Domaine d'Harcourt HW", - "ref": "FRSHEE80", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332896, - 47.179275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Chêne d'Argent", - "ref": "FRFASE330280", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332896, - 47.179275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Chêne d'Argent", - "ref": "FRFASE330280", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.332896, - 47.179275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Pont Chêne d'Argent", - "ref": "FRFASE330280", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE4380", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.593695, - 47.404129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Fondettes 7613 - Rue de l'Aubrière", - "ref": "FRS37E761", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.593695, - 47.404129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Fondettes 7613 - Rue de l'Aubrière", - "ref": "FRS37E761", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.54027, - 49.654708 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Launois sur Vence - 1 rue Louis Joly - 129231", - "ref": "FRS08E12923", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.54027, - 49.654708 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Launois sur Vence - 1 rue Louis Joly - 129231", - "ref": "FRS08E12923", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608736, - 47.410482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Fondettes 7736 - Rue Alfred de Musset", - "ref": "FRS37E773", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608736, - 47.410482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Fondettes 7736 - Rue Alfred de Musset", - "ref": "FRS37E773", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.382251, - 48.600134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TREMBLAY LES VILLAGES - Rue Taugourdeau - 130903", - "ref": "FRS28E13090", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE43800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE43800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE43800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE43800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE43800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133247, - 48.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Troyes Sud", - "ref": "FRIONE43800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212795, - 45.611787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "l'Isle-d'Abeau", - "ref": "FRIONE41250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56562948, - 47.19505287 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Les Aix d'Angillon - Rte de Bourges - 205346", - "ref": "FRS18E20534", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3184578, - 47.22576477 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ALLOGNY - Rue de l'abreuvoir - 186205", - "ref": "FRS18E18620", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3184578, - 47.22576477 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ALLOGNY - Rue de l'abreuvoir - 186205", - "ref": "FRS18E18620", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046277, - 46.907568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "APREMONT - Parking de l'église - 201975", - "ref": "FRS18E20197", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046277, - 46.907568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "APREMONT - Parking de l'église - 201975", - "ref": "FRS18E20197", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437891, - 47.491274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUBIGNY-SUR-NERE - Gymnase - 147205", - "ref": "FRS18E14720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437891, - 47.491274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUBIGNY-SUR-NERE - Gymnase - 147205", - "ref": "FRS18E14720", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.810449, - 45.317662 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CHANAS", - "ref": "FRCPIE6632585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.810449, - 45.317662 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CHANAS", - "ref": "FRCPIE6632585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.651837, - 47.032703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVORD - Alouettes - 206381", - "ref": "FRS18E20638", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.651837, - 47.032703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVORD - Alouettes - 206381", - "ref": "FRS18E20638", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09289, - 49.34888 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED DEAUVILLE", - "ref": "FRCPIE6695555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09289, - 49.34888 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED DEAUVILLE", - "ref": "FRCPIE6695555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212795, - 45.611787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "l'Isle-d'Abeau", - "ref": "FRIONE41250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212795, - 45.611787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "l'Isle-d'Abeau", - "ref": "FRIONE41250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212795, - 45.611787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "l'Isle-d'Abeau", - "ref": "FRIONE41250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212795, - 45.611787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "l'Isle-d'Abeau", - "ref": "FRIONE4125", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.729526, - 47.082201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAUGY - Rue de la Halle - 206419", - "ref": "FRS18E20641", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.729526, - 47.082201 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAUGY - Rue de la Halle - 206419", - "ref": "FRS18E20641", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528385, - 47.532264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLANCAFORT-Place de la Mairie-150331", - "ref": "FRS18E15033", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528385, - 47.532264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLANCAFORT-Place de la Mairie-150331", - "ref": "FRS18E15033", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.533494, - 48.647444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", - "ref": "FRS28E13938", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.533494, - 48.647444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", - "ref": "FRS28E13969", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.730751, - 46.895598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLET - Château - 186579", - "ref": "FRS18E18657", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.730751, - 46.895598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLET - Château - 186579", - "ref": "FRS18E18658", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6736415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.430869, - 49.060816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 15", - "ref": "FRCPIE6736415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56562948, - 47.19505287 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Les Aix d'Angillon - Rte de Bourges - 205346", - "ref": "FRS18E20534", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586006, - 44.369325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rodez", - "ref": "FRIONE4594", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586006, - 44.369325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rodez", - "ref": "FRIONE45940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586006, - 44.369325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rodez", - "ref": "FRIONE45940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45161", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45161", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE45161", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493841, - 43.632368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Meyrargues", - "ref": "FRIONE4516", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.598126, - 47.273001 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARTANNES SUR INDRE 9051 - Place de la Liberté", - "ref": "FRS37E905", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.598126, - 47.273001 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARTANNES SUR INDRE 9051 - Place de la Liberté", - "ref": "FRS37E905", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48426, - 48.24397 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE GAULT SAINT DENIS - Place de l'église - 134509", - "ref": "FRS28E13450", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.973989, - 50.638442 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LILLE", - "ref": "FRCPIE6664735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.973989, - 50.638442 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LILLE", - "ref": "FRCPIE6664735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.491615, - 48.450232 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Bd Foch - 129905", - "ref": "FRS28E12990", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131711, - 47.618868 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VESOUL", - "ref": "FRCPIE6665275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131711, - 47.618868 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VESOUL", - "ref": "FRCPIE6665275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851806, - 43.456489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 1 DC", - "ref": "FRCPIE6610465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851806, - 43.456489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 1 DC", - "ref": "FRCPIE6610465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851806, - 43.456489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 1 DC", - "ref": "FRCPIE6610485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851806, - 43.456489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 1 DC", - "ref": "FRCPIE6610485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851806, - 43.456489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 1 DC", - "ref": "FRCPIE6616535", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851806, - 43.456489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 1 DC", - "ref": "FRCPIE6642765", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22626, - 45.850533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Loire", - "ref": "FRIONE42160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22626, - 45.850533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Loire", - "ref": "FRIONE42160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22626, - 45.850533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Loire", - "ref": "FRIONE42160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22626, - 45.850533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Loire", - "ref": "FRIONE42160", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22626, - 45.850533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Loire", - "ref": "FRIONE4216", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586006, - 44.369325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rodez", - "ref": "FRIONE45940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586006, - 44.369325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rodez", - "ref": "FRIONE45940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.474702, - 43.640079 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF TOULOUSE", - "ref": "FRCPIE6744725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34514679, - 48.97530229 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MARTIN/PRE - 40811 - Rte Louvois", - "ref": "FRS51E4081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912567, - 48.783972 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier", - "ref": "FRS51E4090", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889667, - 48.946919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial", - "ref": "FRS51E4089", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889667, - 48.946919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial", - "ref": "FRS51E4089", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010984, - 47.223166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gevrey-Chambertin Est", - "ref": "FRIONE4102", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010984, - 47.223166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gevrey-Chambertin Est", - "ref": "FRIONE41020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010984, - 47.223166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gevrey-Chambertin Est", - "ref": "FRIONE41020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010984, - 47.223166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gevrey-Chambertin Est", - "ref": "FRIONE41020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010984, - 47.223166 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gevrey-Chambertin Est", - "ref": "FRIONE41020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89263, - 49.091377 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "STE MENEHOULD - 40867 - Place d'Austerlitz", - "ref": "FRS51E4086", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89263, - 49.091377 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "STE MENEHOULD - 40867 - Place d'Austerlitz", - "ref": "FRS51E4086", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.319038, - 48.961659 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MARTIN/PRE - 40811 - Rte Louvois", - "ref": "FRS51E4081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.319038, - 48.961659 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MARTIN/PRE - 40811 - Rte Louvois", - "ref": "FRS51E4081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34514679, - 48.97530229 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MARTIN/PRE - 40811 - Rte Louvois", - "ref": "FRS51E4081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.384208, - 48.953695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MEMMIE - 40802 - Rue de Poix", - "ref": "FRS51E4080", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.160305, - 48.48067742 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PONTGOUIN - Place des halles - 137387", - "ref": "FRS28E13738", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.384208, - 48.953695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MEMMIE - 40802 - Rue de Poix", - "ref": "FRS51E4080", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.674677, - 48.610027 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Epernon - Rue du Général Leclerc", - "ref": "FRS28E20381", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.674677, - 48.610027 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Epernon - Rue du Général Leclerc", - "ref": "FRS28E20380", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.411334, - 50.125142 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAUDRY MUSEE", - "ref": "FRCPIE6698905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.411334, - 50.125142 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAUDRY MUSEE", - "ref": "FRCPIE6698905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.20983, - 48.6947 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCY - Parking PZ stade marcel picot - 187497", - "ref": "FRN54E18749", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.20983, - 48.6947 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCY - Parking PZ stade marcel picot - 187497", - "ref": "FRN54E18749", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45919, - 47.123171 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CROUZILLES - 56267 - Parking Ronsard", - "ref": "FRS37E5626", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45919, - 47.123171 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CROUZILLES - 56267 - Parking Ronsard", - "ref": "FRS37E5626", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3399, - 46.957 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FAYE LA VINEUSE 19690 - Place de la Huchette", - "ref": "FRS37E1969", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3399, - 46.957 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FAYE LA VINEUSE 19690 - Place de la Huchette", - "ref": "FRS37E1969", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7177, - 47.2896 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTBAZON 19674 - Route Nationale", - "ref": "FRS37E1967", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7177, - 47.2896 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTBAZON 19674 - Route Nationale", - "ref": "FRS37E1967", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912567, - 48.783972 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier", - "ref": "FRS51E4090", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47865754, - 48.88282251 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAUSSEE-D'IVRY - Place de l'Eglise - 139414", - "ref": "FRS28E13941", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666942, - 47.390752 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA RICHE 1257", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.869877, - 49.340218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GRANDPRE - Rue de Montlix - 144223", - "ref": "FRS08E14422", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.163071, - 48.047523 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Piffonds", - "ref": "FRIENE006202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.163071, - 48.047523 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Piffonds", - "ref": "FRIENE006201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.163071, - 48.047523 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Piffonds", - "ref": "FRIENE006201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.984678, - 47.28643 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sublaines A85 CCS", - "ref": "FRS37E452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.984678, - 47.28643 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sublaines A85 CCS", - "ref": "FRS37E452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.984678, - 47.28643 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sublaines A85 CCS", - "ref": "FRS37E452", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.984678, - 47.28643 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Sublaines A85 CCS", - "ref": "FRS37E452", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.823047, - 49.088602 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Caumont-sur-Aure", - "ref": "FRIENE003302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.823047, - 49.088602 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Caumont-sur-Aure", - "ref": "FRIENE003302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.823047, - 49.088602 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Caumont-sur-Aure", - "ref": "FRIENE003301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.823047, - 49.088602 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Caumont-sur-Aure", - "ref": "FRIENE003301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.567431, - 48.591197 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PIERRES - Place Marcel Rouleau - 128891", - "ref": "FRS28E12889", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.244511, - 48.298942 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ILLIERS-COMBRAY - place Maunoury - 134925", - "ref": "FRS28E13492", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.869877, - 49.340218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GRANDPRE - Rue de Montlix - 144223", - "ref": "FRS08E14422", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654346, - 47.354024 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", - "ref": "FRS37E1574", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.264386, - 46.682133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LUMELEC NEUVILLE", - "ref": "FRCPIE6643575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.264386, - 46.682133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LUMELEC NEUVILLE", - "ref": "FRCPIE6643575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.460099, - 47.52712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SONZAY 1584", - "ref": "FRS37E158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.460099, - 47.52712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SONZAY 1584", - "ref": "FRS37E158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.005171, - 48.906003 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLANCS COTEAUX - 40985 - Boulebard Jean Brion", - "ref": "FRS51E4098", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.005171, - 48.906003 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLANCS COTEAUX - 40985 - Boulebard Jean Brion", - "ref": "FRS51E4098", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625279, - 48.716747 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAROLLES - 40928 - Rue Saint Hubert", - "ref": "FRS51E4092", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625279, - 48.716747 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAROLLES - 40928 - Rue Saint Hubert", - "ref": "FRS51E4092", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.192719, - 47.756018 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELOMMES 3964 - Rue de la Mairie", - "ref": "FRS41E396", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.192719, - 47.756018 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SELOMMES 3964 - Rue de la Mairie", - "ref": "FRS41E396", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848956, - 48.769477 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PARGNY SUR SAULX - 40915 - Place Jean Monet", - "ref": "FRS51E4091", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848956, - 48.769477 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PARGNY SUR SAULX - 40915 - Place Jean Monet", - "ref": "FRS51E4091", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654346, - 47.354024 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", - "ref": "FRS37E1574", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666942, - 47.390752 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA RICHE 1257", - "ref": "FRS37E135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189542, - 48.208833 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "YEVRES - Rue du pont - 134257", - "ref": "FRS28E13425", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432082, - 49.061843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 01", - "ref": "FRCPIE6726825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.80373021, - 48.32166905 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOGENT-LE-ROTROU - Rue Maison Maraine - 139030", - "ref": "FRS28E13903", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92147, - 45.716052 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GRESY", - "ref": "FRCPIE6664205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92147, - 45.716052 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GRESY", - "ref": "FRCPIE6664205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.852306, - 47.633002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "YVOY LE MARRON-Parking de l’église-200504", - "ref": "FRS41E20050", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.852306, - 47.633002 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "YVOY LE MARRON-Parking de l’église-200504", - "ref": "FRS41E20050", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65424, - 50.539301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BETHUNE 1", - "ref": "FRCPIE6664165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65424, - 50.539301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BETHUNE 1", - "ref": "FRCPIE6664165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.924876, - 48.081364 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "XONRUPT LONGEMER - All des Ecoliers - 145648-CCS", - "ref": "FRS88E14565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.924876, - 48.081364 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "XONRUPT LONGEMER - All des Ecoliers - 145648-CCS", - "ref": "FRS88E14564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484881, - 50.352072 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TINCQUES BORNE 2 AC", - "ref": "FRCPIE6689255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:30-17:30,Tu 08:30-17:30,We 08:30-17:30,Th 08:30-17:30,Fr 08:30-17:30", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484881, - 50.352072 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TINCQUES BORNE 2 AC", - "ref": "FRCPIE6689255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:30-17:30,Tu 08:30-17:30,We 08:30-17:30,Th 08:30-17:30,Fr 08:30-17:30", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8226861, - 48.31978104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOGENT-LE-ROTROU - Rue du château - 139015", - "ref": "FRS28E13901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432082, - 49.061843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 01", - "ref": "FRCPIE6726825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432082, - 49.061843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 01", - "ref": "FRCPIE6720145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.981914, - 49.26254 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St Brice Courcelles - 93668 - 4 août 1789", - "ref": "FRS51E9366", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432082, - 49.061843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 01", - "ref": "FRCPIE6720145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261027, - 49.852902 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SAINT-QUENTIN", - "ref": "FRCPIE6663945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261027, - 49.852902 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SAINT-QUENTIN", - "ref": "FRCPIE6663945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.064474, - 48.325104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMBRES - Place de l'Église - 139348", - "ref": "FRS28E13934", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.871981, - 48.072181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GERARDMER - Place des Déportés - 145636 - CCS", - "ref": "FRS88E14563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.871981, - 48.072181 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GERARDMER - Place des Déportés - 145636 - CCS", - "ref": "FRS88E14563", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62133245, - 47.40762349 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FONDETTES 1248 - Rue Edouard Branly", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62133245, - 47.40762349 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FONDETTES 1248 - Rue Edouard Branly", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.120891, - 49.290951 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "WITRY LES REIMS - 41643 - Place Gambetta", - "ref": "FRS51E4164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.120891, - 49.290951 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "WITRY LES REIMS - 41643 - Place Gambetta", - "ref": "FRS51E4164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867606, - 48.069902 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GERARDMER - Av. de la Ville de Vichy - 145510-CCS", - "ref": "FRS88E14551", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867606, - 48.069902 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GERARDMER - Av. de la Ville de Vichy - 145510-CCS", - "ref": "FRS88E14551", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16588111, - 48.21094659 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BROU - place de l'hôtel de ville - 134921", - "ref": "FRS28E13492", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.981914, - 49.26254 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St Brice Courcelles - 93668 - 4 août 1789", - "ref": "FRS51E9366", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.878221, - 49.073952 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Damery - 93748 - Place rue Paul Douce", - "ref": "FRS51E9374", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19429, - 48.70356 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT MAX - Parking Champlain - 203728", - "ref": "FRN54E20372", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92882606, - 48.42602984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - La Grande Paroisse", - "ref": "FRFASE330210", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19429, - 48.70356 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT MAX - Parking Champlain - 203728", - "ref": "FRN54E20372", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.473152, - 43.448813 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU LOCATION U", - "ref": "FRCPIE6557345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.473152, - 43.448813 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU LOCATION U", - "ref": "FRCPIE6557345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.46809232, - 48.97577513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'Epine - 40008 - Rue des Moissons", - "ref": "FRS51E4000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.46809232, - 48.97577513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "L'Epine - 40008 - Rue des Moissons", - "ref": "FRS51E4000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.531267, - 49.130925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SUIPPES - 39992 - Place de l'Hotel de Ville", - "ref": "FRS51E3999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.531267, - 49.130925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SUIPPES - 39992 - Place de l'Hotel de Ville", - "ref": "FRS51E3999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485743, - 50.352127 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TINCQUES BORNE 1 DC", - "ref": "FRCPIE6690055", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485743, - 50.352127 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TINCQUES BORNE 1 DC", - "ref": "FRCPIE6690055", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.328899, - 47.553475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couesmes", - "ref": "FRIENE005702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.328899, - 47.553475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couesmes", - "ref": "FRIENE005702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.328899, - 47.553475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couesmes", - "ref": "FRIENE005701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.328899, - 47.553475 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couesmes", - "ref": "FRIENE005701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92882606, - 48.42602984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - La Grande Paroisse", - "ref": "FRFASE330210", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.878221, - 49.073952 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Damery - 93748 - Place rue Paul Douce", - "ref": "FRS51E9374", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92882606, - 48.42602984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - La Grande Paroisse", - "ref": "FRFASE330210", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92882606, - 48.42602984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - La Grande Paroisse", - "ref": "FRFASE330210", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.496372, - 47.249526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MEUSNES-121603-Rue Paul Couton", - "ref": "FRS41E12160", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.496372, - 47.249526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MEUSNES-121603-Rue Paul Couton", - "ref": "FRS41E12160", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.470224, - 48.040627 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEMAURY - Rue de Murgers - 134810", - "ref": "FRS28E13481", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.944969, - 48.202498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VITTEL - Rue Robert de Flers - 145771 - CCS", - "ref": "FRS88E14577", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.944969, - 48.202498 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VITTEL - Rue Robert de Flers - 145771 - CCS", - "ref": "FRS88E14577", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317688, - 43.202944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carcassonne", - "ref": "FRIENE007802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317688, - 43.202944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carcassonne", - "ref": "FRIENE007802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317688, - 43.202944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carcassonne", - "ref": "FRIENE007801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317688, - 43.202944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Carcassonne", - "ref": "FRIENE007801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440394, - 48.857906 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ANET - 1 Rue LENOTRE - 139423", - "ref": "FRS28E13942", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440394, - 48.857906 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ANET - 1 Rue LENOTRE - 139423", - "ref": "FRS28E13942", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.163071, - 48.047523 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Piffonds", - "ref": "FRIENE006202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.977766, - 49.249985 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TINQUEUX - 41686 -Rue Sarah Bernhardt", - "ref": "FRS51E4168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.977766, - 49.249985 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TINQUEUX - 41686 -Rue Sarah Bernhardt", - "ref": "FRS51E4168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71418, - 48.42006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Combourg", - "ref": "FRIENE002902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.123919, - 48.098514 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARROU - rue du docteur Vaisbuch - 134214", - "ref": "FRS28E13421", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.344638, - 49.213219 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CAEN", - "ref": "FRCPIE6706575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.344638, - 49.213219 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CAEN", - "ref": "FRCPIE6706575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.320071, - 49.301307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PONTFAVERGER - 42468 - Rue de la gare", - "ref": "FRS51E4246", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.320071, - 49.301307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PONTFAVERGER - 42468 - Rue de la gare", - "ref": "FRS51E4246", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE4168", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE41680", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE41680", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE41680", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE41680", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE41680", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mayenne", - "ref": "FRIONE41680", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71418, - 48.42006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Combourg", - "ref": "FRIENE002902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71418, - 48.42006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Combourg", - "ref": "FRIENE002901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8708, - 49.013191 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos", - "ref": "FRS51E4256", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71418, - 48.42006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Combourg", - "ref": "FRIENE002901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.495829, - 48.445765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Place Morard - 130744", - "ref": "FRS28E13074", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54109, - 48.871712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Montmirail - 93789 - Parking Rochefoucauld", - "ref": "FRS51E9379", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54109, - 48.871712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Montmirail - 93789 - Parking Rochefoucauld", - "ref": "FRS51E9378", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.991429, - 49.251015 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TINQUEUX - 66955 - Pl du commerce", - "ref": "FRS51E6695", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.991429, - 49.251015 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TINQUEUX - 66955 - Pl du commerce", - "ref": "FRS51E6695", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B95097", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B95097", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B95093", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B95093", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B95089", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B95089", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B92941", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8708, - 49.013191 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos", - "ref": "FRS51E4256", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE43550", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025731, - 49.24513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS René THYS - 41688 -Chaussée Bocquaine", - "ref": "FRS51E4168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.161148, - 47.177667 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FOECY - Rue Gaston Cornavin - 143319", - "ref": "FRS18E14331", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas les Adrets", - "ref": "FRIONE44040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.493938, - 48.442585 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Rue Pierre Mendes France - 130752", - "ref": "FRS28E13075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.414958, - 48.737629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINTE GEMME MORONVAL - Rte de Moronval - 130561", - "ref": "FRS28E13056", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.977128, - 49.082242 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAMPILLON - 42589 - Rue Jean Jaurés", - "ref": "FRS51E4258", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.977128, - 49.082242 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAMPILLON - 42589 - Rue Jean Jaurés", - "ref": "FRS51E4258", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.174924, - 49.210139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maizières-lès-Metz | Route de Mézière", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.073028, - 48.689084 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BREZOLLES - Rue de la Ferté - 128792", - "ref": "FRS28E12879", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.161148, - 47.177667 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FOECY - Rue Gaston Cornavin - 143319", - "ref": "FRS18E14332", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE4483", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE43550", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE44830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE44830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE44830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE44830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE44830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307805, - 49.366192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Soissons Ouest", - "ref": "FRIONE44830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.647127, - 47.234257 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SAINT HERBLAIN", - "ref": "FRCPIE6617515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.647127, - 47.234257 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SAINT HERBLAIN", - "ref": "FRCPIE6617515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE4355", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE43550", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE43550", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE43550", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859535, - 47.948716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Orléans Nord", - "ref": "FRIONE43550", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME18B92941", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990399", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990399", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.752446, - 48.264249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "YMONVILLE - Rue du Haut C hemin - 134341", - "ref": "FRS28E13434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.162963, - 49.146104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERZY - 42108 - Rue Chanzy", - "ref": "FRS51E4210", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.162963, - 49.146104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERZY - 42108 - Rue Chanzy", - "ref": "FRS51E4210", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.046298, - 48.099579 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonvillet", - "ref": "FRIENE007002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.046298, - 48.099579 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonvillet", - "ref": "FRIENE007002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.046298, - 48.099579 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonvillet", - "ref": "FRIENE007001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.046298, - 48.099579 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonvillet", - "ref": "FRIENE007001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9805, - 48.138462 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA BAZOCHE-GOUET - Rue des fossés - 134878", - "ref": "FRS28E13487", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.365981, - 49.141384 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre", - "ref": "FRS51E4209", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.365981, - 49.141384 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre", - "ref": "FRS51E4209", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.788295, - 49.086712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Reuil", - "ref": "FRIENE009802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.788295, - 49.086712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Reuil", - "ref": "FRIENE009802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.788295, - 49.086712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Reuil", - "ref": "FRIENE009801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.788295, - 49.086712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Reuil", - "ref": "FRIENE009801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.243168, - 48.299421 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ILLIERS-COMBRAY - Rue des trois mariés - 137321", - "ref": "FRS28E13732", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990395", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101471, - 47.057907 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT HIPPOLYTE 15629 - Parking du Stade", - "ref": "FRS37E1563", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.101471, - 47.057907 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT HIPPOLYTE 15629 - Parking du Stade", - "ref": "FRS37E1562", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.836236, - 48.333791 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARGON - Rue de la Cloche - 139073", - "ref": "FRS28E13907", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679155, - 48.605856 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPERNON - Avenue de la Prairie - 130906", - "ref": "FRS28E13090", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.222709, - 49.175214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VAL DE VESLE - 41910 -Rue du Général de Gaulle", - "ref": "FRS51E4191", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.222709, - 49.175214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VAL DE VESLE - 41910 -Rue du Général de Gaulle", - "ref": "FRS51E4190", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.404936, - 48.917944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SARRY - 41698 - Rue Basse", - "ref": "FRS51E4169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.404936, - 48.917944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SARRY - 41698 - Rue Basse", - "ref": "FRS51E4169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.586678, - 45.400288 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LE GAULIAT BORNE 1", - "ref": "FRCPIE6648515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.586678, - 45.400288 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LE GAULIAT BORNE 1", - "ref": "FRCPIE6648515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025412, - 49.264755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS St Thomas - 41690 -Rue Perin", - "ref": "FRS51E4169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025412, - 49.264755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS St Thomas - 41690 -Rue Perin", - "ref": "FRS51E4168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025731, - 49.24513 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS René THYS - 41688 -Chaussée Bocquaine", - "ref": "FRS51E4168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.103658, - 49.264588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERNAY-LES-REIMS - 42110 -Rue Saint Martin", - "ref": "FRS51E4211", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.103658, - 49.264588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CERNAY-LES-REIMS - 42110 -Rue Saint Martin", - "ref": "FRS51E4211", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE40360", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE40360", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990391", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990391", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990384", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990384", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990376", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990376", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990136", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08990136", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08910938", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08910938", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08910318", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371518, - 51.031205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B95097", - "ref": "FRTNME08910318", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863764, - 43.458331 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 5", - "ref": "FRCPIE6610525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863764, - 43.458331 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 5", - "ref": "FRCPIE6610525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67407399, - 47.45647829 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "METTRAY 1285 - Les Gaudières", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67407399, - 47.45647829 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "METTRAY 1285 - Les Gaudières", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.052451, - 49.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CORMONTREUIL - 42377 - Rue Manoel Pinto", - "ref": "FRS51E4237", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.052451, - 49.225489 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CORMONTREUIL - 42377 - Rue Manoel Pinto", - "ref": "FRS51E4237", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.369631, - 48.717581 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOUILLET - Rue de ROME - 139351", - "ref": "FRS28E13935", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.818785, - 45.344595 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CP 6000 BORNE 1", - "ref": "FRCPIE6758325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.818785, - 45.344595 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CP 6000 BORNE 1", - "ref": "FRCPIE6758325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE4036", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE40360", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE40360", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE40360", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78081763, - 44.51506617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montélimar Ouest", - "ref": "FRIONE40360", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.411364, - 46.064297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bonneville", - "ref": "FRIONE4127", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.411364, - 46.064297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bonneville", - "ref": "FRIONE41270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.411364, - 46.064297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bonneville", - "ref": "FRIONE41270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605512, - 47.715684 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT NOUAN 4615 - Rue des écoles", - "ref": "FRS41E461", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.042746, - 47.892491 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U LA SUZE BORNE 2", - "ref": "FRCPIE6553745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127244, - 49.215278 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Méru Amblainville", - "ref": "FRIENE003502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.03553, - 47.31321 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THEILLAY 4582 - Rue de la Pierre", - "ref": "FRS41E458", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.03553, - 47.31321 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THEILLAY 4582 - Rue de la Pierre", - "ref": "FRS41E458", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.744565, - 47.356158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 4586", - "ref": "FRS41E458", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.744565, - 47.356158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROMORANTIN LANTHENAY 4586", - "ref": "FRS41E458", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.74353, - 47.363383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Romorantin 24592 - Rue de Sabard", - "ref": "FRS41E2459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.74353, - 47.363383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Romorantin 24592 - Rue de Sabard", - "ref": "FRS41E2489", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.612878, - 47.71724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", - "ref": "FRS41E460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.612878, - 47.71724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", - "ref": "FRS41E460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.560186, - 47.685381 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", - "ref": "FRS41E461", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.560186, - 47.685381 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", - "ref": "FRS41E461", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605512, - 47.715684 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT LAURENT NOUAN 4615 - Rue des écoles", - "ref": "FRS41E461", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.831243, - 48.313407 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOGENT-LE-ROTOU - Rue du Commandant Charcot-138014", - "ref": "FRS28E13801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.042746, - 47.892491 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U LA SUZE BORNE 2", - "ref": "FRCPIE6618015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995529, - 47.805809 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", - "ref": "FRS41E466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995529, - 47.805809 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", - "ref": "FRS41E466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.809068, - 47.880445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", - "ref": "FRS41E15365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.809068, - 47.880445 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", - "ref": "FRS41E15365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0739, - 47.7913 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4674 - Geoffrey Martel", - "ref": "FRS41E467", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0739, - 47.7913 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4674 - Geoffrey Martel", - "ref": "FRS41E467", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085881, - 47.918855 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", - "ref": "FRS41E467", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.085881, - 47.918855 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", - "ref": "FRS41E467", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070766, - 47.803382 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4678 - Square des Anciens d'Indochine", - "ref": "FRS41E467", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070766, - 47.803382 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4678 - Square des Anciens d'Indochine", - "ref": "FRS41E467", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929588, - 47.901046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPUISAY 4680 - Rue des Bleuets", - "ref": "FRS41E468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929588, - 47.901046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPUISAY 4680 - Rue des Bleuets", - "ref": "FRS41E468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070017, - 47.793571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4682 - Route du Dr Faton", - "ref": "FRS41E468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.042746, - 47.892491 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U LA SUZE BORNE 2", - "ref": "FRCPIE6618015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99526099, - 48.468156 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vaupillon", - "ref": "FRIENE002501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88865, - 47.04476 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St Hilaire de Gondilly - Le Golf - 126241", - "ref": "FRS18E12624", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584799, - 43.418629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Nord", - "ref": "FRIONE40270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.115551, - 47.746526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED EPC SOLUTIONS", - "ref": "FRCPIE6652065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.115551, - 47.746526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED EPC SOLUTIONS", - "ref": "FRCPIE6652065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292711, - 47.010678 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE SUBDRAY - Salle des Fêtes - 212076", - "ref": "FRS18E21207", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292711, - 47.010678 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE SUBDRAY - Salle des Fêtes - 212076", - "ref": "FRS18E21207", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460635, - 46.812997 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "UZAY-LE-VENON - Eglise - 212026", - "ref": "FRS18E21202", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460635, - 46.812997 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "UZAY-LE-VENON - Eglise - 212026", - "ref": "FRS18E21202", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61345925, - 47.18535428 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIANS - Place de l'Eglise - 205324", - "ref": "FRS18E20532", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61345925, - 47.18535428 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIANS - Place de l'Eglise - 205324", - "ref": "FRS18E20532", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.289339, - 48.06675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT DENIS LANNERAY - Rue Jean Moulin - 134842", - "ref": "FRS28E13484", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584799, - 43.418629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Nord", - "ref": "FRIONE4027", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584799, - 43.418629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Nord", - "ref": "FRIONE40270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584799, - 43.418629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Nord", - "ref": "FRIONE40270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584799, - 43.418629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lacq Audéjos Nord", - "ref": "FRIONE40270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.68531, - 46.96955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAYMOND -Le Far West -117401", - "ref": "FRS18E11740", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99526099, - 48.468156 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vaupillon", - "ref": "FRIENE002501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.68531, - 46.96955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAYMOND -Le Far West -117401", - "ref": "FRS18E11740", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67909863, - 48.60777195 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPERNON - Rue Nouvelle du Sycomore - 130887", - "ref": "FRS28E13088", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.987481, - 47.045568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUET-sur-L'Aubois - Mairie - 205672", - "ref": "FRS18E20567", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.987481, - 47.045568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUET-sur-L'Aubois - Mairie - 205672", - "ref": "FRS18E20567", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE4083", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE40830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE40830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE40830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE40830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE40830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jura", - "ref": "FRIONE40830", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99526099, - 48.468156 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vaupillon", - "ref": "FRIENE002502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99526099, - 48.468156 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vaupillon", - "ref": "FRIENE002502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070017, - 47.793571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4682 - Route du Dr Faton", - "ref": "FRS41E468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.885469, - 48.201157 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JANVILLE-EN-BEAUCE - Parking Bretonnerie - 130534", - "ref": "FRS28E13053", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.791078, - 47.775214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TROO 4684", - "ref": "FRS41E468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.057401, - 47.806584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4745 - AVENUE JEAN MOULIN", - "ref": "FRS41E474", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05053, - 47.42555 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SALBRIS 4717 - Place du 11 Novembre", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.150983, - 47.514688 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.150983, - 47.514688 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.038915, - 48.560028 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SENONCHES - Rue du four banal - 134263", - "ref": "FRS28E13426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.284024, - 47.634797 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FOSSE 4816 - Rue de Vendome", - "ref": "FRS41E481", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.284024, - 47.634797 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FOSSE 4816 - Rue de Vendome", - "ref": "FRS41E481", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.658134, - 47.590104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DHUIZON - Rue de la ferte st cyr - 167439", - "ref": "FRS41E16743", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.658134, - 47.590104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DHUIZON - Rue de la ferte st cyr - 167439", - "ref": "FRS41E16744", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.457308, - 47.59298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", - "ref": "FRS41E473", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.457308, - 47.59298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", - "ref": "FRS41E474", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.299326, - 47.252928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIGNY USSE 4741 - Chemin du pont Félicie", - "ref": "FRS37E474", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.299326, - 47.252928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIGNY USSE 4741 - Chemin du pont Félicie", - "ref": "FRS37E474", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.057401, - 47.806584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENDOME 4745 - AVENUE JEAN MOULIN", - "ref": "FRS41E474", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.286574, - 47.395095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVRILLE LES PONCEAUX 4747 - Rue basse", - "ref": "FRS37E474", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.791078, - 47.775214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TROO 4684", - "ref": "FRS41E468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.286574, - 47.395095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVRILLE LES PONCEAUX 4747 - Rue basse", - "ref": "FRS37E474", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.901331, - 48.611702 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA FERTE-VIDAME - Place de la Mairie - 128756", - "ref": "FRS28E12875", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.415112, - 47.89923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CLOSEAU1 BORNE 2", - "ref": "FRCPIE6752265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.415112, - 47.89923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CLOSEAU1 BORNE 2", - "ref": "FRCPIE6752265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.415112, - 47.89923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CLOSEAU1 BORNE 2", - "ref": "FRCPIE6752305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.415112, - 47.89923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CLOSEAU1 BORNE 2", - "ref": "FRCPIE6752305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.456518, - 42.742776 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL HOTEL DE VILLE", - "ref": "FRCPIE6664415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.456518, - 42.742776 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL HOTEL DE VILLE", - "ref": "FRCPIE6664415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.848995, - 47.5426 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA FERTE BEAUHARNAIS 4727", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.848995, - 47.5426 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA FERTE BEAUHARNAIS 4727", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6740985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6740985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05053, - 47.42555 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SALBRIS 4717 - Place du 11 Novembre", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.124944, - 47.325755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.124944, - 47.325755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18419, - 47.343958 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTRICHARD VAL DE CHER (B1) 4713", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525134, - 47.413841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", - "ref": "FRS41E469", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525134, - 47.413841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", - "ref": "FRS41E469", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.425003, - 47.418349 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTRES 4692 - Rue de la Gare", - "ref": "FRS41E469", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.425003, - 47.418349 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTRES 4692 - Rue de la Gare", - "ref": "FRS41E469", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.864668, - 45.717133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA VÉNISSIEUX AC2", - "ref": "FRCPIE6495345", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.864668, - 45.717133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA VÉNISSIEUX AC2", - "ref": "FRCPIE6497755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.864668, - 45.717133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA VÉNISSIEUX AC2", - "ref": "FRCPIE6497755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.864668, - 45.717133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA VÉNISSIEUX AC2", - "ref": "FRCPIE6497765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.896907, - 47.982211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONDOUBLEAU 4700-4701", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.896907, - 47.982211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONDOUBLEAU 4700-4701", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.341651, - 47.448915 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", - "ref": "FRS41E1706", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.341651, - 47.448915 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", - "ref": "FRS41E1706", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.862056, - 47.752657 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.862056, - 47.752657 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679052, - 49.904515 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nesle-Normandeuse", - "ref": "FRIENE007201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679052, - 49.904515 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nesle-Normandeuse", - "ref": "FRIENE007201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679052, - 49.904515 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nesle-Normandeuse", - "ref": "FRIENE007202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679052, - 49.904515 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nesle-Normandeuse", - "ref": "FRIENE007202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.362749, - 47.744154 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAVES 4706 - Rue du Cèdre", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.362749, - 47.744154 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAVES 4706 - Rue du Cèdre", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.608919, - 47.411859 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MUR DE SOLOGNE 4709 - Place de la Poste", - "ref": "FRS41E470", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.608919, - 47.411859 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MUR DE SOLOGNE 4709 - Place de la Poste", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.378134, - 47.581612 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VINEUIL 4711 - Place Gaspard Imbert", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.378134, - 47.581612 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VINEUIL 4711 - Place Gaspard Imbert", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18419, - 47.343958 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTRICHARD VAL DE CHER (B1) 4713", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18419, - 47.343958 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTRICHARD VAL DE CHER (B1) 4713", - "ref": "FRS41E471", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18419, - 47.343958 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTRICHARD VAL DE CHER (B1) 4713", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17964854, - 48.21525836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BROU - route de Chartres (intermarché) - 134902", - "ref": "FRS28E13490", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88865, - 47.04476 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St Hilaire de Gondilly - Le Golf - 126241", - "ref": "FRS18E12624", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.411364, - 46.064297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bonneville", - "ref": "FRIONE41270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.469628, - 43.446167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAISON DES VINS RH CH STATION 2", - "ref": "FRCPIE6685345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303173, - 49.579074 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE CAMPING LE RIVAGE", - "ref": "FRCPIE6718385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.303173, - 49.579074 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE CAMPING LE RIVAGE", - "ref": "FRCPIE6718385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0966466, - 49.4928271 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "ABB Office du tourisme", - "ref": "FRSHEE24", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0966466, - 49.4928271 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "ABB Office du tourisme", - "ref": "FRSHEE24", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0966466, - 49.4928271 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "ABB Office du tourisme", - "ref": "FRSHEE21", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0966466, - 49.4928271 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "ABB Office du tourisme", - "ref": "FRSHEE21", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.096281, - 46.053918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Roanne", - "ref": "FRIENE004002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.096281, - 46.053918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Roanne", - "ref": "FRIENE004002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.096281, - 46.053918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Roanne", - "ref": "FRIENE004001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.096281, - 46.053918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Roanne", - "ref": "FRIENE004001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.469628, - 43.446167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAISON DES VINS RH CH STATION 2", - "ref": "FRCPIE6685355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.469628, - 43.446167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAISON DES VINS RH CH STATION 2", - "ref": "FRCPIE6685355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.469628, - 43.446167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAISON DES VINS RH CH STATION 2", - "ref": "FRCPIE6685345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.285056, - 48.20839 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DANGEAU - Rue de Brou - 129205", - "ref": "FRS28E12920", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352503, - 47.851546 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SABLE BORNE 3", - "ref": "FRCPIE6700465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.462877, - 47.261805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AZAY LE RIDEAU 1202", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.462877, - 47.261805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AZAY LE RIDEAU 1202", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.691969, - 46.407926 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LUMELEC MAZEROLLES", - "ref": "FRCPIE6603165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.691969, - 46.407926 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LUMELEC MAZEROLLES", - "ref": "FRCPIE6603165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.238614, - 49.309771 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LE HAUT DICK BORNE 1", - "ref": "FRCPIE6611305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.238614, - 49.309771 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LE HAUT DICK BORNE 1", - "ref": "FRCPIE6611305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.06009837, - 47.22609066 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Gare - 148664", - "ref": "FRS18E14866", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.06009837, - 47.22609066 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Gare - 148664", - "ref": "FRS18E14866", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09868, - 47.21801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Rue Eugène Pottier - 112365", - "ref": "FRS18E11236", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09868, - 47.21801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Rue Eugène Pottier - 112365", - "ref": "FRS18E11236", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0649617, - 47.22265878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Parking Gaucherie - 109669", - "ref": "FRS18E10967", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0649617, - 47.22265878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Parking Gaucherie - 109669", - "ref": "FRS18E10966", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6737175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352503, - 47.851546 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SABLE BORNE 3", - "ref": "FRCPIE6700465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352503, - 47.851546 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SABLE BORNE 3", - "ref": "FRCPIE6700485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.660559, - 47.926333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS", - "ref": "FRS88E14547", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.411364, - 46.064297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bonneville", - "ref": "FRIONE41270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078394, - 43.315614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE ROCBARON BORNE 2", - "ref": "FRCPIE6633865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078394, - 43.315614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE ROCBARON BORNE 2", - "ref": "FRCPIE6633865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078394, - 43.315614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE ROCBARON BORNE 2", - "ref": "FRCPIE6633855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078394, - 43.315614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE ROCBARON BORNE 2", - "ref": "FRCPIE6633855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.046795, - 49.260411 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS - Place Alfred Brouette", - "ref": "FRS51E4132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.046795, - 49.260411 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS - Place Alfred Brouette", - "ref": "FRS51E4132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40265", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40265", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.924072, - 49.244383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vrigny | A4, Aire de Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167616, - 48.211401 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BROU - place de la matrassière - 134890", - "ref": "FRS28E13489", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352503, - 47.851546 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SABLE BORNE 3", - "ref": "FRCPIE6700485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59944811, - 48.41284129 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOURS - Place du docteur Bouclet - 127349", - "ref": "FRS28E13734", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.092707, - 49.21244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TAISSY - 41147 - Rue du Saussais", - "ref": "FRS51E4114", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.092707, - 49.21244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TAISSY - 41147 - Rue du Saussais", - "ref": "FRS51E4114", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1323, - 49.197361 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SILLERY - 41135 - Rue Nicolas Brulart", - "ref": "FRS51E4113", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1323, - 49.197361 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SILLERY - 41135 - Rue Nicolas Brulart", - "ref": "FRS51E4113", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03213549, - 47.54070211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DAME MARIE DES BOIS 1238", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03213549, - 47.54070211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DAME MARIE DES BOIS 1238", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.484739, - 48.861906 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "POGNY - 40935 - RD 54", - "ref": "FRS51E4093", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.484739, - 48.861906 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "POGNY - 40935 - RD 54", - "ref": "FRS51E4093", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.375991, - 48.741367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DREUX - Rue de la fontaine - 134368", - "ref": "FRS28E13436", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.166757, - 47.254236 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "La Chapelle-sur-Loire/A85", - "ref": "FRS37E141", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352503, - 47.851546 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SABLE BORNE 3", - "ref": "FRCPIE6700495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352503, - 47.851546 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SABLE BORNE 3", - "ref": "FRCPIE6700495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6737175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6737065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6737065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580831, - 47.01014909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TROUY - Place du Marché - 188401", - "ref": "FRS18E18840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57491568, - 48.1923956 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCHEVILLE - Place du Pâtis - 134359", - "ref": "FRS28E13435", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92143963, - 46.82955189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCOINS - Place du champ de Foire - 117712", - "ref": "FRS18E11771", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92143963, - 46.82955189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCOINS - Place du champ de Foire - 117712", - "ref": "FRS18E11771", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83647572, - 47.33148416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCERRE - Rempart des Abreuvoirs - 151321", - "ref": "FRS18E15132", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83647572, - 47.33148416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCERRE - Rempart des Abreuvoirs - 151321", - "ref": "FRS18E15132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6736255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6726685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6726685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6726675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431778, - 49.061212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 45", - "ref": "FRCPIE6726675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77138871, - 48.35464382 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "OUARVILLE - Rue de le République - 129076", - "ref": "FRS28E12907", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.818616, - 47.854989 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MAURICE - Rue de Lorraine - 145495 - CCS", - "ref": "FRS88E14549", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.818616, - 47.854989 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MAURICE - Rue de Lorraine - 145495 - CCS", - "ref": "FRS88E14549", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51002394, - 46.99228393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT-JUST - Mairie - 150513", - "ref": "FRS18E15051", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51002394, - 46.99228393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT-JUST - Mairie - 150513", - "ref": "FRS18E15051", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.660559, - 47.926333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS", - "ref": "FRS88E14548", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580831, - 47.01014909 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TROUY - Place du Marché - 188401", - "ref": "FRS18E18840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.539255, - 46.829121 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHATELLERAULT", - "ref": "FRCPIE6737895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.539255, - 46.829121 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHATELLERAULT", - "ref": "FRCPIE6737895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.366838, - 46.701436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Jaunay-Clan", - "ref": "FRIONE40940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6736275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6726695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431413, - 49.060984 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 31", - "ref": "FRCPIE6726695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.75716, - 47.257608 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEAUGUES - Eglise - 200482", - "ref": "FRS18E20048", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.75716, - 47.257608 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEAUGUES - Eglise - 200482", - "ref": "FRS18E20048", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37077109, - 46.8011169 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLENAY - Place Bascoulard - 117415", - "ref": "FRS18E11741", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37077109, - 46.8011169 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLENAY - Place Bascoulard - 117415", - "ref": "FRS18E11741", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65083, - 47.45830163 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLY SUR SAULDRE-Mairie-150315", - "ref": "FRS18E15031", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65083, - 47.45830163 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VALLY SUR SAULDRE-Mairie-150315", - "ref": "FRS18E15031", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912706, - 44.236282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "S.U VAL DURANCE BORNE 1-2", - "ref": "FRCPIE6706125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912706, - 44.236282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "S.U VAL DURANCE BORNE 1-2", - "ref": "FRCPIE6706125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912706, - 44.236282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "S.U VAL DURANCE BORNE 1-2", - "ref": "FRCPIE6706085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912706, - 44.236282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "S.U VAL DURANCE BORNE 1-2", - "ref": "FRCPIE6706085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912706, - 44.236282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "S.U VAL DURANCE BORNE 1-2", - "ref": "FRCPIE6706075", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912706, - 44.236282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "S.U VAL DURANCE BORNE 1-2", - "ref": "FRCPIE6706075", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.366838, - 46.701436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Jaunay-Clan", - "ref": "FRIONE4094", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.366838, - 46.701436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Jaunay-Clan", - "ref": "FRIONE40940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.366838, - 46.701436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Jaunay-Clan", - "ref": "FRIONE40940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.366838, - 46.701436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Jaunay-Clan", - "ref": "FRIONE40940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623389, - 48.595821 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Domfront", - "ref": "FRIENE004902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.425486, - 48.78011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ALFORTVILLE", - "ref": "FRCPIE6571185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623389, - 48.595821 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Domfront", - "ref": "FRIENE004901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24555436, - 43.33794647 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Volvestre", - "ref": "FRIONE40190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.102999, - 48.908924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vallée de la vire Gouvets", - "ref": "FRIONE41040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.102999, - 48.908924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vallée de la vire Gouvets", - "ref": "FRIONE41040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.102999, - 48.908924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vallée de la vire Gouvets", - "ref": "FRIONE41040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.102999, - 48.908924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vallée de la vire Gouvets", - "ref": "FRIONE41040", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.166899, - 45.998903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire des Crêts Blancs", - "ref": "FRFASE330950", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.166899, - 45.998903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire des Crêts Blancs", - "ref": "FRFASE330950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.166899, - 45.998903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire des Crêts Blancs", - "ref": "FRFASE330950", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.166899, - 45.998903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire des Crêts Blancs", - "ref": "FRFASE330950", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.757126, - 48.928281 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NONSARD LAMARCHE - 66378 - Base Loisirs de Madine", - "ref": "FRS55E6637", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.757126, - 48.928281 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NONSARD LAMARCHE - 66378 - Base Loisirs de Madine", - "ref": "FRS55E6637", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94658719, - 48.06335936 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARVILLE 4926", - "ref": "FRS41E492", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94658719, - 48.06335936 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ARVILLE 4926", - "ref": "FRS41E492", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13469517, - 47.41925327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué la Couaille", - "ref": "FRIONE4022", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13469517, - 47.41925327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué la Couaille", - "ref": "FRIONE40220", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13469517, - 47.41925327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué la Couaille", - "ref": "FRIONE40220", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13469517, - 47.41925327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué la Couaille", - "ref": "FRIONE40220", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13469517, - 47.41925327 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué la Couaille", - "ref": "FRIONE40220", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.102999, - 48.908924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vallée de la vire Gouvets", - "ref": "FRIONE4104", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09642, - 48.47696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quevilloncourt", - "ref": "FRIENE008601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09642, - 48.47696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quevilloncourt", - "ref": "FRIENE008601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6737525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6736515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09642, - 48.47696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quevilloncourt", - "ref": "FRIENE008602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.873729, - 47.640214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BELFORT CONNECT", - "ref": "FRCPIE6665205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.873729, - 47.640214 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BELFORT CONNECT", - "ref": "FRCPIE6665205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.896767, - 46.675976 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couleuvre", - "ref": "FRIENE005302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.896767, - 46.675976 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couleuvre", - "ref": "FRIENE005302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.896767, - 46.675976 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couleuvre", - "ref": "FRIENE005301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.896767, - 46.675976 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Couleuvre", - "ref": "FRIENE005301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09642, - 48.47696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quevilloncourt", - "ref": "FRIENE008602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24555436, - 43.33794647 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Volvestre", - "ref": "FRIONE4019", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24555436, - 43.33794647 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Volvestre", - "ref": "FRIONE40190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353031, - 48.856298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_013", - "ref": "FRTNMETERRA54012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24555436, - 43.33794647 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Volvestre", - "ref": "FRIONE40190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61192, - 44.920927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SDS BORNE 2", - "ref": "FRCPIE6639505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61192, - 44.920927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SDS BORNE 2", - "ref": "FRCPIE6639505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61192, - 44.920927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SDS BORNE 2", - "ref": "FRCPIE6639495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61192, - 44.920927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SDS BORNE 2", - "ref": "FRCPIE6639495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61192, - 44.920927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SDS BORNE 2", - "ref": "FRCPIE6639455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61192, - 44.920927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SDS BORNE 2", - "ref": "FRCPIE6639455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.163118, - 48.221297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Brou", - "ref": "FRIENE006702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.163118, - 48.221297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Brou", - "ref": "FRIENE006702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.163118, - 48.221297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Brou", - "ref": "FRIENE006701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.163118, - 48.221297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Brou", - "ref": "FRIENE006701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.041287, - 49.242168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS - 49177 - Parking St Remi Place Lenoncourt", - "ref": "FRS51E4917", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.041287, - 49.242168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS - 49177 - Parking St Remi Place Lenoncourt", - "ref": "FRS51E4917", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367618, - 49.877237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "Asia Automotive", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42155", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42155", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.939804, - 46.940088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA GUERCHE - Parking NETTO - 146807", - "ref": "FRS18E14680", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.939804, - 46.940088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA GUERCHE - Parking NETTO - 146807", - "ref": "FRS18E14680", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE68", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24555436, - 43.33794647 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Volvestre", - "ref": "FRIONE40190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE4521", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE68", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440923, - 45.160721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Sud", - "ref": "FRIONE45210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE70", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE70", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE70", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE70", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE69", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3735372, - 48.8488274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Haras HW", - "ref": "FRSHEE69", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431222, - 49.060762 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 67", - "ref": "FRCPIE6737525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353031, - 48.856298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_013", - "ref": "FRTNMETERRA54012", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE4520", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.440653, - 45.161043 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pays de Brives Nord", - "ref": "FRIONE45200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13388, - 48.6994 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAXOU - Centre commercial la cascade - 187763", - "ref": "FRN54E18776", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13388, - 48.6994 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAXOU - Centre commercial la cascade - 187763", - "ref": "FRN54E18776", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19956, - 48.6931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCY - Parking mail de l'horloge - 187727", - "ref": "FRN54E18772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19956, - 48.6931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCY - Parking mail de l'horloge - 187727", - "ref": "FRN54E18772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22902, - 48.6585 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LANEUVEVILLE - Parking de la piscine - 187442", - "ref": "FRN54E18744", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22902, - 48.6585 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LANEUVEVILLE - Parking de la piscine - 187442", - "ref": "FRN54E18744", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241201, - 47.094379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bourges Sainte Thorette", - "ref": "FRIONE41610", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241201, - 47.094379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bourges Sainte Thorette", - "ref": "FRIONE41610", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241201, - 47.094379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bourges Sainte Thorette", - "ref": "FRIONE4161", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06949, - 45.875816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontanelles", - "ref": "FRIONE40900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6726615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6720155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6720155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06949, - 45.875816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontanelles", - "ref": "FRIONE4090", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06949, - 45.875816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontanelles", - "ref": "FRIONE40900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06949, - 45.875816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontanelles", - "ref": "FRIONE40900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06949, - 45.875816 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontanelles", - "ref": "FRIONE40900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.379958, - 49.301268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HYPER U STATION 2", - "ref": "FRCPIE6590315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720788, - 48.263874 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Nemours", - "ref": "FRIONE40860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.379958, - 49.301268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HYPER U STATION 2", - "ref": "FRCPIE6590315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.379958, - 49.301268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HYPER U STATION 2", - "ref": "FRCPIE6583555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.379958, - 49.301268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HYPER U STATION 2", - "ref": "FRCPIE6583555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720788, - 48.263874 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Nemours", - "ref": "FRIONE4086", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720788, - 48.263874 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Nemours", - "ref": "FRIONE40860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720788, - 48.263874 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Nemours", - "ref": "FRIONE40860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720788, - 48.263874 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Nemours", - "ref": "FRIONE40860", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353031, - 48.856298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_013", - "ref": "FRTNMETERRA54013", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.874112, - 45.59649 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ALDIANCE 1", - "ref": "FRCPIE6742495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.874112, - 45.59649 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ALDIANCE 1", - "ref": "FRCPIE6742495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.874112, - 45.59649 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ALDIANCE 1", - "ref": "FRCPIE6742485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.874112, - 45.59649 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ALDIANCE 1", - "ref": "FRCPIE6742485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16809, - 47.803507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Sud", - "ref": "FRIONE4034", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16809, - 47.803507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Sud", - "ref": "FRIONE40340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16809, - 47.803507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Sud", - "ref": "FRIONE40340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16809, - 47.803507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Sud", - "ref": "FRIONE40340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16809, - 47.803507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sarthe Sud", - "ref": "FRIONE40340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41565", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41565", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684845, - 47.852305 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353031, - 48.856298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_013", - "ref": "FRTNMETERRA54013", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.538226, - 44.817371 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "644a2ea935cf6d6b98b2a0b7", - "ref": "FRTNME08910961", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.538226, - 44.817371 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "644a2ea935cf6d6b98b2a0b7", - "ref": "FRTNME08912792", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537032, - 43.247589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 2 DC", - "ref": "FRCPIE6741255", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6737035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6736625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537032, - 43.247589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 2 DC", - "ref": "FRCPIE6741255", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6736625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6736575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6736575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6736235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43087, - 49.060529 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 72", - "ref": "FRCPIE6736235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537032, - 43.247589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 2 DC", - "ref": "FRCPIE6741505", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537032, - 43.247589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E.LECLERC BORNE 2 DC", - "ref": "FRCPIE6741505", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6736615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.507029, - 46.720829 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St AMAND-MONTROND - Cours Manuel 2 - 171693", - "ref": "FRS18E17169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347765, - 47.720211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Diges", - "ref": "FRIENE007601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347765, - 47.720211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Diges", - "ref": "FRIENE007601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.748407, - 47.002756 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BENGY-sur-Craon - Rte de Bourges - 186608", - "ref": "FRS18E18660", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.748407, - 47.002756 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BENGY-sur-Craon - Rte de Bourges - 186608", - "ref": "FRS18E18660", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420473, - 43.586775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Ouest", - "ref": "FRIONE4052", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420473, - 43.586775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Ouest", - "ref": "FRIONE40520", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420473, - 43.586775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Ouest", - "ref": "FRIONE40520", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420473, - 43.586775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Ouest", - "ref": "FRIONE40520", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420473, - 43.586775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Ouest", - "ref": "FRIONE40520", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.418951, - 43.585904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Est", - "ref": "FRIONE4029", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.418951, - 43.585904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Est", - "ref": "FRIONE40290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.418951, - 43.585904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Est", - "ref": "FRIONE40290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.418951, - 43.585904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Est", - "ref": "FRIONE40290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.418951, - 43.585904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labenne Est", - "ref": "FRIONE40290", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046546, - 47.849887 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAS AUNAUDIS BORNE 1", - "ref": "FRCPIE6753115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046546, - 47.849887 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAS AUNAUDIS BORNE 1", - "ref": "FRCPIE6753115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046836, - 47.849873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAS AUNAUDIS BORNE 2", - "ref": "FRCPIE6753105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347765, - 47.720211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Diges", - "ref": "FRIENE007602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347765, - 47.720211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Diges", - "ref": "FRIENE007602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14581, - 48.6494 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", - "ref": "FRN54E18788", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965497, - 48.290046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 4", - "ref": "FRCPIE6654415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965497, - 48.290046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 4", - "ref": "FRCPIE6654415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14581, - 48.6494 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", - "ref": "FRN54E18788", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86101, - 45.243957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Nazaire les Eymes", - "ref": "FRFASE330970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.814386, - 46.447174 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA BOUCHERIE RESTAURANT", - "ref": "FRCPIE6693455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.814386, - 46.447174 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA BOUCHERIE RESTAURANT", - "ref": "FRCPIE6693455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54542, - 48.870452 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTMIRAIL - 48602 - Place de Montlean", - "ref": "FRS51E4860", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54542, - 48.870452 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTMIRAIL - 48602 - Place de Montlean", - "ref": "FRS51E4860", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14581, - 48.6494 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", - "ref": "FRN54E20708", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14581, - 48.6494 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", - "ref": "FRN54E20708", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046836, - 47.849873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAS AUNAUDIS BORNE 2", - "ref": "FRCPIE6753105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.507029, - 46.720829 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St AMAND-MONTROND - Cours Manuel 2 - 171693", - "ref": "FRS18E17169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.964374, - 48.289919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 3", - "ref": "FRCPIE6654585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.995222, - 47.155156 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MASSAY - Avenue Marechal Foch - 205973", - "ref": "FRS18E20597", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25417363, - 46.4339625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PREVERANGES - Mairie - 148778", - "ref": "FRS18E14877", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25417363, - 46.4339625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PREVERANGES - Mairie - 148778", - "ref": "FRS18E14877", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661829, - 47.237075 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GEORGES RENAULT BORNE 1", - "ref": "FRCPIE6654735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661829, - 47.237075 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GEORGES RENAULT BORNE 1", - "ref": "FRCPIE6654735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661829, - 47.237075 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GEORGES RENAULT BORNE 1", - "ref": "FRCPIE6530035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661829, - 47.237075 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GEORGES RENAULT BORNE 1", - "ref": "FRCPIE6530035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661829, - 47.237075 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GEORGES RENAULT BORNE 1", - "ref": "FRCPIE6527975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.661829, - 47.237075 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GEORGES RENAULT BORNE 1", - "ref": "FRCPIE6527975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.482925, - 47.350599 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEMERY 2952 - Rue du Balay", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.482925, - 47.350599 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEMERY 2952 - Rue du Balay", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.931112, - 45.751247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VAULX-EN-VELIN", - "ref": "FRCPIE6634525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.931112, - 45.751247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VAULX-EN-VELIN", - "ref": "FRCPIE6634525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.063073, - 48.970463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Ussy sur Marne", - "ref": "FRFASE331120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.995222, - 47.155156 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MASSAY - Avenue Marechal Foch - 205973", - "ref": "FRS18E20597", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.239191, - 46.895022 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LUMELEC SOFITOM1", - "ref": "FRCPIE6650145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.239191, - 46.895022 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LUMELEC SOFITOM1", - "ref": "FRCPIE6650145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187398, - 48.273996 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Kergoët", - "ref": "FRIONE43600", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844517, - 46.69318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint Ambreuil", - "ref": "FRFASE330250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31743, - 43.489727 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITM SEYESSES 1 BRVE 1", - "ref": "FRCPIE6731545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31743, - 43.489727 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITM SEYESSES 1 BRVE 1", - "ref": "FRCPIE6731545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187398, - 48.273996 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Kergoët", - "ref": "FRIONE43600", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187398, - 48.273996 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Kergoët", - "ref": "FRIONE43600", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187398, - 48.273996 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Kergoët", - "ref": "FRIONE43600", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.964374, - 48.289919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 3", - "ref": "FRCPIE6654585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.964374, - 48.289919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 3", - "ref": "FRCPIE6654685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14207, - 48.69796 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCY - PARKING PISCINE GENTILLY - 188610", - "ref": "FRN54E18861", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387813, - 47.664023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Ménars", - "ref": "FRIONE40780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.74469, - 48.93661 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Boinville-en-Mantois", - "ref": "FRIENE005002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.74469, - 48.93661 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Boinville-en-Mantois", - "ref": "FRIENE005002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.74469, - 48.93661 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Boinville-en-Mantois", - "ref": "FRIENE005001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.74469, - 48.93661 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Boinville-en-Mantois", - "ref": "FRIENE005001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208417, - 47.682055 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", - "ref": "FRS41E6041", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208417, - 47.682055 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", - "ref": "FRS41E6040", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE4130", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE41300", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE41300", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE41300", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE41300", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE41300", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Rambert Ouest", - "ref": "FRIONE41300", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.040516, - 49.245067 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Reims - 95878 - Rue Gambetta - Parking rectorat", - "ref": "FRS51E9587", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.040516, - 49.245067 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Reims - 95878 - Rue Gambetta - Parking rectorat", - "ref": "FRS51E9587", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.807788, - 50.10205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHOOZ - Rue Paul Emile Janson - 57639", - "ref": "FRS08E5764", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387813, - 47.664023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Ménars", - "ref": "FRIONE40780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387813, - 47.664023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Ménars", - "ref": "FRIONE40780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387813, - 47.664023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Ménars", - "ref": "FRIONE40780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.529178, - 48.480158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Andel", - "ref": "FRIENE005802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30883262, - 43.91498099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Labastide-Saint-Pierre | Avenue du Pech", - "ref": "FRIONE42150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2005877, - 46.0008547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire des Eglantiers - Ruffec", - "ref": "FRSHEE72", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2005877, - 46.0008547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire des Eglantiers - Ruffec", - "ref": "FRSHEE72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2005877, - 46.0008547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire des Eglantiers - Ruffec", - "ref": "FRSHEE72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2005877, - 46.0008547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire des Eglantiers - Ruffec", - "ref": "FRSHEE71", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2005877, - 46.0008547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire des Eglantiers - Ruffec", - "ref": "FRSHEE71", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.529178, - 48.480158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Andel", - "ref": "FRIENE005802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.529178, - 48.480158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Andel", - "ref": "FRIENE005801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387813, - 47.664023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Ménars", - "ref": "FRIONE4078", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.529178, - 48.480158 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Andel", - "ref": "FRIENE005801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59565, - 47.555778 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", - "ref": "FRS37E450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59565, - 47.555778 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", - "ref": "FRS37E449", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59565, - 47.555778 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", - "ref": "FRS37E449", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59565, - 47.555778 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", - "ref": "FRS37E449", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.312729, - 46.612695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT POITIERS", - "ref": "FRCPIE6738725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.312729, - 46.612695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT POITIERS", - "ref": "FRCPIE6738725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.807788, - 50.10205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHOOZ - Rue Paul Emile Janson - 57639", - "ref": "FRS08E5763", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14207, - 48.69796 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NANCY - PARKING PISCINE GENTILLY - 188610", - "ref": "FRN54E18861", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.964374, - 48.289919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 3", - "ref": "FRCPIE6654685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702371, - 49.992544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FUMAY - Place Aristide Briand - 57685", - "ref": "FRS08E5768", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.476357, - 43.29862 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U AGDE BORNE 3", - "ref": "FRCPIE6608855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.476357, - 43.29862 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U AGDE BORNE 3", - "ref": "FRCPIE6608855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.547145, - 49.614324 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bolleville Est", - "ref": "FRIONE4023", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.547145, - 49.614324 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bolleville Est", - "ref": "FRIONE40230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.547145, - 49.614324 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bolleville Est", - "ref": "FRIONE40230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509765, - 47.700796 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MER 4037 - 1 Avenue Maréchal Maunoury", - "ref": "FRS41E403", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509765, - 47.700796 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MER 4037 - 1 Avenue Maréchal Maunoury", - "ref": "FRS41E403", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635956, - 48.825393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR 3CCLIM CROISSY", - "ref": "FRCPIE6759675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635956, - 48.825393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR 3CCLIM CROISSY", - "ref": "FRCPIE6759675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.963021, - 48.289934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 2", - "ref": "FRCPIE6654675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.963021, - 48.289934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV SAINT DIE 2", - "ref": "FRCPIE6654675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.695643, - 48.532623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MELUN", - "ref": "FRCPIE6759465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.695643, - 48.532623 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR MELUN", - "ref": "FRCPIE6759465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418074, - 47.204422 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", - "ref": "FRS18E18818", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418074, - 47.204422 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", - "ref": "FRS18E18817", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765788, - 48.554601 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", - "ref": "FRS51E4889", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765788, - 48.554601 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", - "ref": "FRS51E4888", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.476357, - 43.29862 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U AGDE BORNE 3", - "ref": "FRCPIE6608865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.476357, - 43.29862 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U AGDE BORNE 3", - "ref": "FRCPIE6608865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.476357, - 43.29862 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U AGDE BORNE 3", - "ref": "FRCPIE6608875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912983, - 44.236495 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sisteron", - "ref": "FRIONE4490", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702371, - 49.992544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FUMAY - Place Aristide Briand - 57685", - "ref": "FRS08E5768", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.707178, - 50.010736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HAYBES - Place de la mairie - 57561", - "ref": "FRS08E5756", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.707178, - 50.010736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HAYBES - Place de la mairie - 57561", - "ref": "FRS08E5756", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.114786, - 48.573786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Hilaire du Harcouët", - "ref": "FRIENE005502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.114786, - 48.573786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Hilaire du Harcouët", - "ref": "FRIENE005502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.114786, - 48.573786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Hilaire du Harcouët", - "ref": "FRIENE005501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.114786, - 48.573786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Hilaire du Harcouët", - "ref": "FRIENE005501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912983, - 44.236495 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sisteron", - "ref": "FRIONE44900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.476357, - 43.29862 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U AGDE BORNE 3", - "ref": "FRCPIE6608875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912983, - 44.236495 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sisteron", - "ref": "FRIONE44900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912983, - 44.236495 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sisteron", - "ref": "FRIONE44900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912983, - 44.236495 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Sisteron", - "ref": "FRIONE44900", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.404699, - 46.373134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "KRYS BORNE 1", - "ref": "FRCPIE6665415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-09:00,Mo 19:00-24:00,Tu 19:00-24:00,Tu 00:00-09:00,We 19:00-24:00,We 00:00-09:00,Th 19:00-24:00,Th 00:00-09:00,Fr 19:00-24:00,Fr 00:00-09:00,Sa 19:00-24:00,Sa 00:00-09:00,Su 19:00-24:00,Su 00:00-09:00", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.404699, - 46.373134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "KRYS BORNE 1", - "ref": "FRCPIE6665415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-09:00,Mo 19:00-24:00,Tu 19:00-24:00,Tu 00:00-09:00,We 19:00-24:00,We 00:00-09:00,Th 19:00-24:00,Th 00:00-09:00,Fr 19:00-24:00,Fr 00:00-09:00,Sa 19:00-24:00,Sa 00:00-09:00,Su 19:00-24:00,Su 00:00-09:00", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.024389, - 47.797822 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAVEIL 4933 - Rue de Montrieux", - "ref": "FRS41E493", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.024389, - 47.797822 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NAVEIL 4933 - Rue de Montrieux", - "ref": "FRS41E493", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6726615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6736615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.255731, - 47.390532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PONTLEVOY 2950 - Rue de la Saulaie", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40445", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183078, - 43.985279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Larzac", - "ref": "FRIONE43250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183078, - 43.985279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Larzac", - "ref": "FRIONE43250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183078, - 43.985279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Larzac", - "ref": "FRIONE43250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383523, - 47.082805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - PRADO - 109619", - "ref": "FRS18E10962", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383523, - 47.082805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - PRADO - 109619", - "ref": "FRS18E10961", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME09911164", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME09911164", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME08912228", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME08912228", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME08912220", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME08912220", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME08912218", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35303, - 48.855598 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09911164", - "ref": "FRTNME08912218", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133649, - 45.78463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CLERMONT-FER 3", - "ref": "FRCPIE6678655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133649, - 45.78463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CLERMONT-FER 3", - "ref": "FRCPIE6678655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133649, - 45.78463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CLERMONT-FER 3", - "ref": "FRCPIE6678625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133649, - 45.78463 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CLERMONT-FER 3", - "ref": "FRCPIE6678625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183078, - 43.985279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Larzac", - "ref": "FRIONE43250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183078, - 43.985279 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Larzac", - "ref": "FRIONE4325", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6535085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6535085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6699815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6699815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6696725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6696725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6696715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284115, - 45.856641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 8", - "ref": "FRCPIE6696715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40445", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431989, - 47.096046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Esprit 1 - 97832", - "ref": "FRS18E9783", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431989, - 47.096046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Esprit 1 - 97832", - "ref": "FRS18E9783", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.689664, - 48.538046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VAUX LE PENIL", - "ref": "FRCPIE6685065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.689664, - 48.538046 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VAUX LE PENIL", - "ref": "FRCPIE6685065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.191293, - 49.490326 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "STENAY - 124570 - Parking Codécom", - "ref": "FRS55E12457", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.191293, - 49.490326 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "STENAY - 124570 - Parking Codécom", - "ref": "FRS55E12457", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.182761, - 47.939582 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 2", - "ref": "FRCPIE6580395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.182761, - 47.939582 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 2", - "ref": "FRCPIE6580395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.182761, - 47.939582 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 2", - "ref": "FRCPIE6580385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.182761, - 47.939582 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE ARNAGE 2", - "ref": "FRCPIE6580385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE4473", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE44730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE44730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE44730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE44730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE44730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.333831, - 45.173218 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Ouest", - "ref": "FRIONE44730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.389028, - 49.017264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orbec", - "ref": "FRIENE003601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.389028, - 49.017264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orbec", - "ref": "FRIENE003601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.389028, - 49.017264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orbec", - "ref": "FRIENE003602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.103642, - 50.394888 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DOUAI 2", - "ref": "FRCPIE6677615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay | A46, Aire De Mionnay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.680558, - 43.452155 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "Centre Médical de la Burlière", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.680558, - 43.452155 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "Centre Médical de la Burlière", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.103642, - 50.394888 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DOUAI 2", - "ref": "FRCPIE6677615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.389028, - 49.017264 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Orbec", - "ref": "FRIENE003602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091331, - 48.86053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Loisy", - "ref": "FRFASE331090", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139773, - 47.254983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", - "ref": "FRS41E21188", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE43590", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.484484, - 45.691062 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Victor de Morestel", - "ref": "FRIENE007502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.484484, - 45.691062 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Victor de Morestel", - "ref": "FRIENE007501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.484484, - 45.691062 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Victor de Morestel", - "ref": "FRIENE007501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.925021, - 44.734301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UTILE GRANE BORNE 1", - "ref": "FRCPIE6618725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.925021, - 44.734301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UTILE GRANE BORNE 1", - "ref": "FRCPIE6618725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841747, - 44.1183 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA ORANGE ABB", - "ref": "FRCPIE6501915", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.670186, - 48.590522 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U WOLFI BORNE 1", - "ref": "FRCPIE6615295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.670186, - 48.590522 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U WOLFI BORNE 1", - "ref": "FRCPIE6615295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87145, - 47.9399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENTRON - Place de la Mairie - CCS", - "ref": "FRS88E16202", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87145, - 47.9399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VENTRON - Place de la Mairie - CCS", - "ref": "FRS88E16202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.039059, - 49.232653 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U DOZULE BORNE 1", - "ref": "FRCPIE6709175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.039059, - 49.232653 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U DOZULE BORNE 1", - "ref": "FRCPIE6709175", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.039059, - 49.232653 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U DOZULE BORNE 1", - "ref": "FRCPIE6709155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.039059, - 49.232653 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U DOZULE BORNE 1", - "ref": "FRCPIE6709155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE4359", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE43590", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE43590", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.484484, - 45.691062 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint Victor de Morestel", - "ref": "FRIENE007502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912453, - 45.778018 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA VAULX ABBGAUCHE", - "ref": "FRCPIE6502285", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912453, - 45.778018 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA VAULX ABBGAUCHE", - "ref": "FRCPIE6506505", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05837, - 48.326772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Plouasne", - "ref": "FRIENE008802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME18B92447", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME18B92392", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.581681, - 48.728361 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VITRY LE FRANCOIS-Av. du quai des fontaines-127010", - "ref": "FRS51E12701", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.581681, - 48.728361 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VITRY LE FRANCOIS-Av. du quai des fontaines-127010", - "ref": "FRS51E12701", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.211785, - 43.361722 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PECHBLEU BORNE 3", - "ref": "FRCPIE6713095", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.211785, - 43.361722 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PECHBLEU BORNE 3", - "ref": "FRCPIE6713075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.211785, - 43.361722 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PECHBLEU BORNE 3", - "ref": "FRCPIE6711655", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05837, - 48.326772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Plouasne", - "ref": "FRIENE008802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036179, - 49.228438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS- René DESCARTES - 175071", - "ref": "FRS51E17507", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05837, - 48.326772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Plouasne", - "ref": "FRIENE008801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05837, - 48.326772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Plouasne", - "ref": "FRIENE008801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267674, - 43.621346 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CASTRES BORNE 2", - "ref": "FRCPIE6669225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267674, - 43.621346 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CASTRES BORNE 2", - "ref": "FRCPIE6669225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267674, - 43.621346 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CASTRES BORNE 2", - "ref": "FRCPIE6669215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267674, - 43.621346 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CASTRES BORNE 2", - "ref": "FRCPIE6669215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036179, - 49.228438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIMS- René DESCARTES - 175071", - "ref": "FRS51E17507", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE43590", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE43590", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983211, - 43.650765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Montpellier Saint-Aunès", - "ref": "FRIONE43590", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331101", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE331100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1847, - 49.150483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de La Maxe", - "ref": "FRFASE33111", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16172, - 48.6219 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUDRES - PARKING DE LA MAIRIE - 187775", - "ref": "FRN54E18777", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16172, - 48.6219 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUDRES - PARKING DE LA MAIRIE - 187775", - "ref": "FRN54E18777", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848341, - 42.577784 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Ouest", - "ref": "FRIONE41320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98495561, - 47.3403572 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CROIX EN TOURAINE 1256", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98495561, - 47.3403572 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CROIX EN TOURAINE 1256", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.783627, - 48.555099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise", - "ref": "FRS51E5772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.783627, - 48.555099 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise", - "ref": "FRS51E5772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848341, - 42.577784 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Ouest", - "ref": "FRIONE4132", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848341, - 42.577784 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Ouest", - "ref": "FRIONE41320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848341, - 42.577784 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Ouest", - "ref": "FRIONE41320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848341, - 42.577784 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Ouest", - "ref": "FRIONE41320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383175, - 45.470713 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA PRIEST-EN AC2", - "ref": "FRCPIE6498985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-07:00,Mo 19:00-24:00,Tu 00:00-07:00,Tu 19:00-24:00,We 00:00-07:00,We 19:00-24:00,Th 00:00-07:00,Th 19:00-24:00,Fr 00:00-07:00,Fr 19:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89454062, - 45.8843468 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Saint-Galmier", - "ref": "FRIONE4040", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89454062, - 45.8843468 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Saint-Galmier", - "ref": "FRIONE40400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89454062, - 45.8843468 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Saint-Galmier", - "ref": "FRIONE40400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89454062, - 45.8843468 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Saint-Galmier", - "ref": "FRIONE40400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89454062, - 45.8843468 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Saint-Galmier", - "ref": "FRIONE40400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.795431, - 45.775456 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA ECULLY AC", - "ref": "FRCPIE6499325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383175, - 45.470713 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA PRIEST-EN AC2", - "ref": "FRCPIE6498985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-07:00,Mo 19:00-24:00,Tu 00:00-07:00,Tu 19:00-24:00,We 00:00-07:00,We 19:00-24:00,Th 00:00-07:00,Th 19:00-24:00,Fr 00:00-07:00,Fr 19:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.139773, - 47.254983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", - "ref": "FRS41E21188", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.805584, - 50.927617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF COQUELLES 1", - "ref": "FRCPIE6676155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6736725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456708, - 48.814104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAINT-MAURICE BORNE 3", - "ref": "FRCPIE6658785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76787, - 46.14335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Dracé", - "ref": "FRFASE330240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE4396", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43961", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43961", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43961", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684731, - 47.852405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jardin des arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684731, - 47.852405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jardin des arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684731, - 47.852405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jardin des arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.170022, - 47.211736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", - "ref": "FRS37E1507", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39603, - 48.943368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a0f9abb23fb6dc695ab55", - "ref": "FRTNME18B92614", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91212277, - 43.92298703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Morières", - "ref": "FRIONE4085", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91212277, - 43.92298703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Morières", - "ref": "FRIONE40850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91212277, - 43.92298703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Morières", - "ref": "FRIONE40850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91212277, - 43.92298703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Morières", - "ref": "FRIONE40850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91212277, - 43.92298703 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Morières", - "ref": "FRIONE40850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.170022, - 47.211736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", - "ref": "FRS37E1507", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.447394, - 48.177233 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Place Jeanne Arc - 144226 - CCS", - "ref": "FRS88E14422", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684731, - 47.852405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jardin des arbres", - "ref": "FRIONE41560", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.447394, - 48.177233 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Place Jeanne Arc - 144226 - CCS", - "ref": "FRS88E14422", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.846994, - 42.578429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Est", - "ref": "FRIONE4131", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.846994, - 42.578429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Est", - "ref": "FRIONE41310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.846994, - 42.578429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Est", - "ref": "FRIONE41310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.846994, - 42.578429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Est", - "ref": "FRIONE41310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.846994, - 42.578429 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Village Catalan Est", - "ref": "FRIONE41310", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684731, - 47.852405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Jardin des arbres", - "ref": "FRIONE4156", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39603, - 48.943368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a0f9abb23fb6dc695ab55", - "ref": "FRTNME18B92617", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.490129, - 46.11788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ceignes Haut Bugey", - "ref": "FRIONE43120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.490129, - 46.11788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ceignes Haut Bugey", - "ref": "FRIONE43120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E16758", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E16758", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15800", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15800", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15798", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15798", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15795", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602227, - 48.755076 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COMMERCY - 157987 - Piscine", - "ref": "FRS55E15795", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.406892, - 48.111453 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITEP-ROCHERS BORNE 1", - "ref": "FRCPIE6672815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.406892, - 48.111453 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ITEP-ROCHERS BORNE 1", - "ref": "FRCPIE6672815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431517, - 49.061577 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 41", - "ref": "FRCPIE6736725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.490129, - 46.11788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ceignes Haut Bugey", - "ref": "FRIONE43120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.490129, - 46.11788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ceignes Haut Bugey", - "ref": "FRIONE43120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.490129, - 46.11788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ceignes Haut Bugey", - "ref": "FRIONE4312", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63894, - 49.649323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Poix Terron - Rue de la gare - 188242", - "ref": "FRS08E18824", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.769307, - 47.292443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", - "ref": "FRS41E502", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.769307, - 47.292443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", - "ref": "FRS41E502", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.798736, - 46.503822 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU LA CHAUME BORNE 1", - "ref": "FRCPIE6580005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.798736, - 46.503822 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU LA CHAUME BORNE 1", - "ref": "FRCPIE6580005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.876433, - 47.249876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURCAY 1234", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.876433, - 47.249876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURCAY 1234", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63894, - 49.649323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Poix Terron - Rue de la gare - 188242", - "ref": "FRS08E18824", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13341, - 43.715255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Ambrussum Nord", - "ref": "FRFASE330070", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39603, - 48.943368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a0f9abb23fb6dc695ab55", - "ref": "FRTNME18B92615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.684894, - 43.447921 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "Trets | Rue Clerion 1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.805584, - 50.927617 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF COQUELLES 1", - "ref": "FRCPIE6676155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.490503, - 48.417013 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09910787", - "ref": "FRTNME09910787", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.915513, - 47.32171 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Athée sur Cher 10710 - Place de la Mairie 1", - "ref": "FRS37E3632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.915513, - 47.32171 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Athée sur Cher 10710 - Place de la Mairie 1", - "ref": "FRS37E1071", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.583139, - 47.343718 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GY EN SOLOGNE 211305 - rue croix Saint-André", - "ref": "FRS41E21130", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.583139, - 47.343718 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GY EN SOLOGNE 211305 - rue croix Saint-André", - "ref": "FRS41E21130", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE4489", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE44890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE44890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE44890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE44890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE44890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.705334, - 46.850918 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Châteauroux Nord", - "ref": "FRIONE44890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862741, - 43.987314 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG LE PONTET 6", - "ref": "FRCPIE6729915", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862741, - 43.987314 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG LE PONTET 6", - "ref": "FRCPIE6729915", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862741, - 43.987314 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG LE PONTET 6", - "ref": "FRCPIE6531055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862741, - 43.987314 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG LE PONTET 6", - "ref": "FRCPIE6531055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.638258, - 48.133595 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BNR BORNE 1", - "ref": "FRCPIE6697285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.638258, - 48.133595 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BNR BORNE 1", - "ref": "FRCPIE6697285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63311, - 48.992331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Rosny-Sud", - "ref": "FRFASE331020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707788, - 47.615521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES WELDOM BORNE 2", - "ref": "FRCPIE6645705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707788, - 47.615521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES WELDOM BORNE 2", - "ref": "FRCPIE6645705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707788, - 47.615521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES WELDOM BORNE 2", - "ref": "FRCPIE6645695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707788, - 47.615521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES WELDOM BORNE 2", - "ref": "FRCPIE6645695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.568067, - 44.658051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire-jardin des Causses du Lot", - "ref": "FRFASE330080", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.490503, - 48.417013 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "09910787", - "ref": "FRTNME09910787", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE4377", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE43770", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.332889, - 46.54068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "QUADRIPACK BORNE 1", - "ref": "FRCPIE6671585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.332889, - 46.54068 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "QUADRIPACK BORNE 1", - "ref": "FRCPIE6671585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80509, - 50.927424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF COQUELLES 2", - "ref": "FRCPIE6676145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80509, - 50.927424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF COQUELLES 2", - "ref": "FRCPIE6676145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60124, - 43.287488 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF AUBAGNE", - "ref": "FRCPIE6724145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60124, - 43.287488 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF AUBAGNE", - "ref": "FRCPIE6724145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8003045, - 45.14952753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire du Manoire", - "ref": "FRFASE330490", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.232587, - 44.877413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED SARLAT", - "ref": "FRCPIE6724055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.232587, - 44.877413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED SARLAT", - "ref": "FRCPIE6724055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.684894, - 43.447921 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "Trets | Rue Clerion 1", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.331326, - 46.541203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "QUADRIPACK BORNE 2", - "ref": "FRCPIE6671685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.331326, - 46.541203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "QUADRIPACK BORNE 2", - "ref": "FRCPIE6671685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.331326, - 46.541203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "QUADRIPACK BORNE 2", - "ref": "FRCPIE6671695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.556317, - 47.383873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUYNES 1339", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE43770", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE43770", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE43770", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE43770", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.188615, - 49.24801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val de Reuil", - "ref": "FRIONE43770", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.710812, - 47.456044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOTRE DAME D'OE 1341", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.710812, - 47.456044 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOTRE DAME D'OE 1341", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.556317, - 47.383873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUYNES 1339", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.331326, - 46.541203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "QUADRIPACK BORNE 2", - "ref": "FRCPIE6671695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.413577, - 46.948665 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JAULNAY 1337", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.413577, - 46.948665 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JAULNAY 1337", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.131556, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué-les-Cossonnières", - "ref": "FRIONE4021", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.131556, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué-les-Cossonnières", - "ref": "FRIONE40210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.131556, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué-les-Cossonnières", - "ref": "FRIONE40210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.131556, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué-les-Cossonnières", - "ref": "FRIONE40210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.131556, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longué-les-Cossonnières", - "ref": "FRIONE40210", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.255731, - 47.390532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PONTLEVOY 2950 - Rue de la Saulaie", - "ref": "FRS41E295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.396898, - 48.610175 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TREVERAY - 122901 - Mairie", - "ref": "FRS55E12290", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.760154, - 48.515332 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", - "ref": "FRS28E17563", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427055, - 48.612608 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LISSES", - "ref": "FRCPIE6758525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21332, - 47.05409 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Loché-sur-Indrois", - "ref": "FRIENE005902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21332, - 47.05409 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Loché-sur-Indrois", - "ref": "FRIENE005902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.233912, - 47.997089 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CLOYES-SUR-LE-LOIR - Place Gambetta - 127147", - "ref": "FRS28E12714", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.284364, - 45.856939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 2", - "ref": "FRCPIE6696765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.299493, - 49.189088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU COLOMBELLES BORNE 1", - "ref": "FRCPIE6608205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.299493, - 49.189088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU COLOMBELLES BORNE 1", - "ref": "FRCPIE6608205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.409856, - 50.12472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAUDRY MAIRIE", - "ref": "FRCPIE6735385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.409856, - 50.12472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CAUDRY MAIRIE", - "ref": "FRCPIE6735385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.358236, - 49.318152 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA CAPRICIEUSE GOLD", - "ref": "FRCPIE6735855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.358236, - 49.318152 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA CAPRICIEUSE GOLD", - "ref": "FRCPIE6735855", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21332, - 47.05409 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Loché-sur-Indrois", - "ref": "FRIENE005901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21332, - 47.05409 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Loché-sur-Indrois", - "ref": "FRIENE005901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.133889, - 47.336889 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHISSAY EN TOURAINE 4723 - Place du Château", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049093, - 44.039853 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GVA CARPENTRAS ABB", - "ref": "FRCPIE6509805", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07050827, - 45.84386863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lyon-Dagneux Sud", - "ref": "FRIONE40840", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07050827, - 45.84386863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lyon-Dagneux Sud", - "ref": "FRIONE40840", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07050827, - 45.84386863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lyon-Dagneux Sud", - "ref": "FRIONE4084", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955762, - 43.63593 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GRASSE", - "ref": "FRCPIE6630285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955762, - 43.63593 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GRASSE", - "ref": "FRCPIE6630285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395161, - 44.609766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AUBENAS 2", - "ref": "FRCPIE6755645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395161, - 44.609766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AUBENAS 2", - "ref": "FRCPIE6755645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.012166, - 48.470684 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA LOUPE - Rue Pasteur - 134213", - "ref": "FRS28E13421", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.133889, - 47.336889 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHISSAY EN TOURAINE 4723 - Place du Château", - "ref": "FRS41E472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.577741, - 48.586706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAINTENON - Place Aristide Briand - 128898", - "ref": "FRS28E12889", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52264, - 48.0588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS", - "ref": "FRS88E16233", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52264, - 48.0588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS", - "ref": "FRS88E16233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.339952, - 48.730179 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERNOUILLET - 16 Avenue Marc CHAPPEY - 139069", - "ref": "FRS28E13906", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.544851, - 43.58019 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BASTIDE DU PLAN BORNE 1", - "ref": "FRCPIE6757325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.544851, - 43.58019 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BASTIDE DU PLAN BORNE 1", - "ref": "FRCPIE6757325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.381954, - 48.840804 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SOREL-MOUSSEL - Place De La Mairie - 139436", - "ref": "FRS28E13943", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427055, - 48.612608 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LISSES", - "ref": "FRCPIE6758525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6696735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07050827, - 45.84386863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lyon-Dagneux Sud", - "ref": "FRIONE40840", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6696735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035971, - 47.504363 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maison Dieu", - "ref": "FRIONE43880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035971, - 47.504363 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maison Dieu", - "ref": "FRIONE43880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.162319, - 48.775137 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-place des exelmans-66230", - "ref": "FRS55E6623", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.162319, - 48.775137 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-place des exelmans-66230", - "ref": "FRS55E6623", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.359979, - 44.039147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GRAMAGLIA SARL BORNE ELECTRIC", - "ref": "FRCPIE6672145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.359979, - 44.039147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "GRAMAGLIA SARL BORNE ELECTRIC", - "ref": "FRCPIE6672145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76674, - 47.8782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE THILLOT - 177158 - CCS", - "ref": "FRS88E17715", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76674, - 47.8782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE THILLOT - 177158 - CCS", - "ref": "FRS88E17716", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.826062, - 47.387572 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.826062, - 47.387572 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9315, - 48.4286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - Les Récompenses", - "ref": "FRFASE330220", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9315, - 48.4286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - Les Récompenses", - "ref": "FRFASE330220", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9315, - 48.4286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - Les Récompenses", - "ref": "FRFASE330220", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9315, - 48.4286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Jonchets - Les Récompenses", - "ref": "FRFASE330220", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.709964, - 48.435547 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEVILLE LE COMTE - Rue Pinceloup - 130145", - "ref": "FRS28E13014", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE41370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE41370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035971, - 47.504363 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maison Dieu", - "ref": "FRIONE43880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035971, - 47.504363 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maison Dieu", - "ref": "FRIONE43880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035971, - 47.504363 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maison Dieu", - "ref": "FRIONE43880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.21506944, - 47.6492611 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Allaire", - "ref": "FRIENE006001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6696745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6696745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6696755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6696755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6699795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.283908, - 45.856424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ST-VULBAS 9", - "ref": "FRCPIE6699795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.21506944, - 47.6492611 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Allaire", - "ref": "FRIENE006001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.21506944, - 47.6492611 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Allaire", - "ref": "FRIENE006002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035971, - 47.504363 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Maison Dieu", - "ref": "FRIONE43880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.21506944, - 47.6492611 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Allaire", - "ref": "FRIENE006002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.40224, - 48.0442 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "XERTIGNY - 177098 - CCS", - "ref": "FRS88E17709", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.40224, - 48.0442 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "XERTIGNY - 177098 - CCS", - "ref": "FRS88E17710", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.546522, - 48.121309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SOMOUEST BORNE 1", - "ref": "FRCPIE6685205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:30-18:30,Tu 07:30-18:30,We 07:30-18:30,Th 07:30-18:30,Fr 07:30-18:30", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.546522, - 48.121309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SOMOUEST BORNE 1", - "ref": "FRCPIE6685205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 07:30-18:30,Tu 07:30-18:30,We 07:30-18:30,Th 07:30-18:30,Fr 07:30-18:30", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18008, - 48.6458 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HOUDEMONT - Parking relais de la gare - 187685", - "ref": "FRN54E18768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18008, - 48.6458 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HOUDEMONT - Parking relais de la gare - 187685", - "ref": "FRN54E18768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07050827, - 45.84386863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Lyon-Dagneux Sud", - "ref": "FRIONE40840", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.585304, - 47.812847 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AUXERRE", - "ref": "FRCPIE6711185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE41370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.466396, - 48.19388 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Rue Philippe Séguin - 159235 - CCS", - "ref": "FRS88E15923", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.059607, - 47.575025 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CARNAC BORNE 3", - "ref": "FRCPIE6708765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.059607, - 47.575025 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CARNAC BORNE 3", - "ref": "FRCPIE6708765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.059607, - 47.575025 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CARNAC BORNE 3", - "ref": "FRCPIE6708785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.059607, - 47.575025 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CARNAC BORNE 3", - "ref": "FRCPIE6708785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.624898, - 48.271745 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOVES - Rue de Châteaudun - 141761", - "ref": "FRS28E14176", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99582, - 47.15519 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MASSAY - Place de l'église - 112319", - "ref": "FRS18E11231", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99582, - 47.15519 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MASSAY - Place de l'église - 112319", - "ref": "FRS18E11232", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.400307, - 49.036892 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UNILABS BIO CT CHATEAU THIERRY", - "ref": "FRCPIE6643385", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.400307, - 49.036892 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UNILABS BIO CT CHATEAU THIERRY", - "ref": "FRCPIE6643385", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95925, - 48.2364 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAULCY SUR MEURTHE - 161611 - CCS", - "ref": "FRS88E16161", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95925, - 48.2364 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAULCY SUR MEURTHE - 161611 - CCS", - "ref": "FRS88E16161", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.911604, - 47.157244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCERGUES - La Chicane - 181993", - "ref": "FRS18E18199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.911604, - 47.157244 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SANCERGUES - La Chicane - 181993", - "ref": "FRS18E18199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.747075, - 48.088989 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LAVAL", - "ref": "FRCPIE6643815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.747075, - 48.088989 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LAVAL", - "ref": "FRCPIE6643815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252767, - 47.567883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRINON-sur-Sauldre - Maire - 186370", - "ref": "FRS18E18637", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252767, - 47.567883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRINON-sur-Sauldre - Maire - 186370", - "ref": "FRS18E18637", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61971, - 47.12379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRECY - Mairie - 112944", - "ref": "FRS18E20401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61971, - 47.12379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRECY - Mairie - 112944", - "ref": "FRS18E20401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.140409, - 46.808706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FIDEMECA BORNE 2", - "ref": "FRCPIE6734595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57943, - 47.285643 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HENRICHEMONT - La Borne - 186354", - "ref": "FRS18E18635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418853, - 47.076978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parking Pyrotechnie - 96970", - "ref": "FRS18E9697", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.80268, - 49.182375 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLE EN TARDENOIS", - "ref": "FRS51E5746", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.80268, - 49.182375 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLE EN TARDENOIS", - "ref": "FRS51E5747", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11646, - 46.82673 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEZAL-BENOIT - Poste - 112663", - "ref": "FRS18E11266", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11646, - 46.82673 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEZAL-BENOIT - Poste - 112663", - "ref": "FRS18E11266", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56521, - 46.88286 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DUN-SUR-AURON - Piscine - 115406", - "ref": "FRS18E11540", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56521, - 46.88286 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DUN-SUR-AURON - Piscine - 115406", - "ref": "FRS18E11566", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57943, - 47.285643 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HENRICHEMONT - La Borne - 186354", - "ref": "FRS18E18635", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.140409, - 46.808706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FIDEMECA BORNE 2", - "ref": "FRCPIE6734595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.874999, - 47.473644 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LERE - Port - 204137", - "ref": "FRS18E20413", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.874999, - 47.473644 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LERE - Port - 204137", - "ref": "FRS18E20413", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387454, - 48.17977 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BONNEVAL - Rue de la grève - 134496", - "ref": "FRS28E13449", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45226, - 46.99799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", - "ref": "FRS18E11221", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45226, - 46.99799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", - "ref": "FRS18E11221", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.140409, - 46.808706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FIDEMECA BORNE 2", - "ref": "FRCPIE6718575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.140409, - 46.808706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FIDEMECA BORNE 2", - "ref": "FRCPIE6718575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.466396, - 48.19388 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Rue Philippe Séguin - 159235 - CCS", - "ref": "FRS88E15923", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.857829, - 47.336965 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT-SATUR - Résistance - 200419", - "ref": "FRS18E20041", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.585304, - 47.812847 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AUXERRE", - "ref": "FRCPIE6711185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.857829, - 47.336965 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT-SATUR - Résistance - 200419", - "ref": "FRS18E20042", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.366913, - 48.957709 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Châlons-en-Champagne | Rue du Flocmagny", - "ref": "FRS51E14185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.366913, - 48.957709 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Châlons-en-Champagne | Rue du Flocmagny", - "ref": "FRS51E14185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.978697, - 48.26783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MARGUERITE - Rue de la Meurthe - 159296 - CCS", - "ref": "FRS88E15929", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.978697, - 48.26783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST MARGUERITE - Rue de la Meurthe - 159296 - CCS", - "ref": "FRS88E15929", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451327, - 48.159642 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Rue de Remiremont - 159049 - Type 2", - "ref": "FRS88E15904", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451327, - 48.159642 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPINAL - Rue de Remiremont - 159049 - Type 2", - "ref": "FRS88E15904", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877437, - 45.634803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ZI PONTET BORNE 1", - "ref": "FRCPIE6708995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877437, - 45.634803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ZI PONTET BORNE 1", - "ref": "FRCPIE6708995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE46920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE46920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE46920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE46920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE46920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE46920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.919794, - 45.897783 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Junien", - "ref": "FRIONE4692", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87923, - 48.1726 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS", - "ref": "FRS88E16173", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87923, - 48.1726 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS", - "ref": "FRS88E16173", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47546, - 48.1402 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DINOZE - 161636 - CCS", - "ref": "FRS88E16163", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47546, - 48.1402 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DINOZE - 161636 - CCS", - "ref": "FRS88E16163", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544709, - 47.304761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Henrichemont", - "ref": "FRIENE009302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43186, - 47.36434 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", - "ref": "FRS18E11272", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.373375, - 47.101366 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St DOULCHARD - Gal De Gaulle - 140155", - "ref": "FRS18E14015", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.373375, - 47.101366 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St DOULCHARD - Gal De Gaulle - 140155", - "ref": "FRS18E14015", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43252, - 46.53885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VESDUN - Rte de St VITTE - 182380", - "ref": "FRS18E18238", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43252, - 46.53885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VESDUN - Rte de St VITTE - 182380", - "ref": "FRS18E18238", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283484, - 46.642269 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE CHATELET - Place de la Mairie - 143927", - "ref": "FRS18E14392", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283484, - 46.642269 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE CHATELET - Place de la Mairie - 143927", - "ref": "FRS18E14392", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43186, - 47.36434 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", - "ref": "FRS18E11271", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56678, - 49.01664 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonnieres sur Seine", - "ref": "FRIENE004101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544709, - 47.304761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Henrichemont", - "ref": "FRIENE009302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56678, - 49.01664 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonnieres sur Seine", - "ref": "FRIENE004101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56678, - 49.01664 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonnieres sur Seine", - "ref": "FRIENE004102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56678, - 49.01664 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bonnieres sur Seine", - "ref": "FRIENE004102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.602354, - 48.385134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROVILLE AUX CHENES - Plc des Erables - 159270-CCS", - "ref": "FRS88E15927", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.602354, - 48.385134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROVILLE AUX CHENES - Plc des Erables - 159270-CCS", - "ref": "FRS88E15927", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544709, - 47.304761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Henrichemont", - "ref": "FRIENE009301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544709, - 47.304761 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Henrichemont", - "ref": "FRIENE009301", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE41370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE41370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.71346, - 46.80106 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BANNEGON - Place saint Georges -117205", - "ref": "FRS18E19642", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.252578, - 48.449077 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURVILLE SUR EUR - Beauce - 137388", - "ref": "FRS28E13738", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE44", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE45", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE45", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE45", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE45", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35150861, - 46.57702787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIGNY - Le Bourg - 148756", - "ref": "FRS18E14875", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35150861, - 46.57702787 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIGNY - Le Bourg - 148756", - "ref": "FRS18E14875", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.682819, - 48.146012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ORGERES-EN-BEAUCE - Rue de l'Arsenal - 130014", - "ref": "FRS28E13001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.414504, - 47.081654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - SDE18 - 186239", - "ref": "FRS18E18623", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37298052, - 47.10104724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St DOULCHARD - Clos Chaperon - 98613", - "ref": "FRS18E9861", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37298052, - 47.10104724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St DOULCHARD - Clos Chaperon - 98613", - "ref": "FRS18E9861", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40000606, - 47.09136482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Coubertin - 153420", - "ref": "FRS18E15342", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40000606, - 47.09136482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Coubertin - 153420", - "ref": "FRS18E15342", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.392723, - 48.113672 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MOLEANS - Rue du moulin - 134801", - "ref": "FRS28E13480", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26026, - 49.851873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED ST QUENTIN", - "ref": "FRCPIE6649255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26026, - 49.851873 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED ST QUENTIN", - "ref": "FRCPIE6649255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398691, - 47.078991 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Séraucourt - 214519", - "ref": "FRS18E21451", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE44", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE43", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE43", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.107851, - 44.566656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GAP", - "ref": "FRCPIE6593725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.880171, - 48.375871 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV MOYENMOUTIER 2", - "ref": "FRCPIE6643025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.880171, - 48.375871 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV MOYENMOUTIER 2", - "ref": "FRCPIE6643025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.543013, - 48.651644 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COULOMBS - Rue des Remparts - 139389", - "ref": "FRS28E13938", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81153005, - 46.99737769 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NERONDES - Route de Bourges - 146793", - "ref": "FRS18E14679", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81153005, - 46.99737769 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NERONDES - Route de Bourges - 146793", - "ref": "FRS18E14679", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.818359, - 48.322194 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOGENT-LE-ROTROU - Place du 11 août - 139024", - "ref": "FRS28E13902", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.107851, - 44.566656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GAP", - "ref": "FRCPIE6593725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.701676, - 48.976424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel", - "ref": "FRS55E6644", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2288233, - 48.7293536 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Sommesous HW", - "ref": "FRSHEE43", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.701676, - 48.976424 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel", - "ref": "FRS55E6644", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.623059, - 45.196766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Freney", - "ref": "FRIONE40370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.623059, - 45.196766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Freney", - "ref": "FRIONE40370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.623059, - 45.196766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Freney", - "ref": "FRIONE40370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.623059, - 45.196766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Freney", - "ref": "FRIONE40370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.623059, - 45.196766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Freney", - "ref": "FRIONE4037", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.884251, - 48.200212 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri - 130244", - "ref": "FRS28E13024", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398691, - 47.078991 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Séraucourt - 214519", - "ref": "FRS18E21452", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47814, - 46.302012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Niort Saint-Florent", - "ref": "FRIENE009201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.880171, - 48.375871 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV MOYENMOUTIER 2", - "ref": "FRCPIE6643015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47814, - 46.302012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Niort Saint-Florent", - "ref": "FRIENE009201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.365318, - 49.508675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RETHEL - 46445 - Place de la republique", - "ref": "FRS08E4644", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2676, - 49.4177 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATELET SUR RETOURNE - 46461 - Parking D925", - "ref": "FRS08E4646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2676, - 49.4177 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATELET SUR RETOURNE - 46461 - Parking D925", - "ref": "FRS08E4646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.04468352, - 49.42853006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRIENNE SUR AISNE - 46468 - Parking Co-voiturage", - "ref": "FRS08E4646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.04468352, - 49.42853006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BRIENNE SUR AISNE - 46468 - Parking Co-voiturage", - "ref": "FRS08E4646", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.98555, - 49.262042 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Saint Brice Courcelle rue libération - 112430", - "ref": "FRS51E11242", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.98555, - 49.262042 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Saint Brice Courcelle rue libération - 112430", - "ref": "FRS51E11243", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE41760", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE41760", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE41760", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE41760", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE41760", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE41760", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.509793, - 49.118571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Sud", - "ref": "FRIONE4176", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66933846, - 47.6509206 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Derval", - "ref": "FRIENE003701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66933846, - 47.6509206 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Derval", - "ref": "FRIENE003701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66933846, - 47.6509206 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Derval", - "ref": "FRIENE003702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.365318, - 49.508675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RETHEL - 46445 - Place de la republique", - "ref": "FRS08E4644", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.369649, - 49.504894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RETHEL - 46434 - Parking Place Victor Hugo", - "ref": "FRS08E4643", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.369649, - 49.504894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RETHEL - 46434 - Parking Place Victor Hugo", - "ref": "FRS08E4643", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0643557, - 50.2274772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Rumaucourt HW", - "ref": "FRSHEE33", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47814, - 46.302012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Niort Saint-Florent", - "ref": "FRIENE009202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47814, - 46.302012 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Niort Saint-Florent", - "ref": "FRIENE009202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.391091, - 48.727654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINTE GEMME MORONVAL - Rte Nogent le Roi - 130548", - "ref": "FRS28E13054", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0643557, - 50.2274772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Rumaucourt HW", - "ref": "FRSHEE32", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0643557, - 50.2274772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Rumaucourt HW", - "ref": "FRSHEE32", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0643557, - 50.2274772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Rumaucourt HW", - "ref": "FRSHEE33", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0643557, - 50.2274772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Rumaucourt HW", - "ref": "FRSHEE33", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0643557, - 50.2274772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Rumaucourt HW", - "ref": "FRSHEE33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.058594, - 47.574824 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CARNAC BORNE 1", - "ref": "FRCPIE6708745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.447106, - 46.141037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VICHY", - "ref": "FRCPIE6647205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.447106, - 46.141037 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VICHY", - "ref": "FRCPIE6647205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279899, - 44.524191 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNHDP BORNE 1", - "ref": "FRCPIE6676785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279899, - 44.524191 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNHDP BORNE 1", - "ref": "FRCPIE6676785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.593659, - 49.050216 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U FAULQUEMONT EMPLOYES", - "ref": "FRCPIE6547545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.593659, - 49.050216 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U FAULQUEMONT EMPLOYES", - "ref": "FRCPIE6547545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.058594, - 47.574824 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CARNAC BORNE 1", - "ref": "FRCPIE6708745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.880171, - 48.375871 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV MOYENMOUTIER 2", - "ref": "FRCPIE6643015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE41370", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.515931, - 48.563374 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LANNILIS SIEGE BORNE 2", - "ref": "FRCPIE6699895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.515931, - 48.563374 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LANNILIS SIEGE BORNE 2", - "ref": "FRCPIE6699895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.762427, - 48.506516 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton -137338", - "ref": "FRS28E13733", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206429, - 48.688773 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR 3CCLIM VILLEBON", - "ref": "FRCPIE6690455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206429, - 48.688773 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR 3CCLIM VILLEBON", - "ref": "FRCPIE6690455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40283817, - 47.12422876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Asnieres - 104686", - "ref": "FRS18E10468", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40283817, - 47.12422876 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Asnieres - 104686", - "ref": "FRS18E10468", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44161714, - 47.48927488 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUBIGNY - Place Résistance - 95964", - "ref": "FRS18E9596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44161714, - 47.48927488 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUBIGNY - Place Résistance - 95964", - "ref": "FRS18E9596", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47679, - 48.0905 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HADOL - PLACE VIVIN - 161845 - CCS", - "ref": "FRS88E16184", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47679, - 48.0905 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HADOL - PLACE VIVIN - 161845 - CCS", - "ref": "FRS88E16184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40458209, - 47.10553756 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Place Cothenet - 104721", - "ref": "FRS18E10472", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40458209, - 47.10553756 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Place Cothenet - 104721", - "ref": "FRS18E10472", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.515931, - 48.563374 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LANNILIS SIEGE BORNE 2", - "ref": "FRCPIE6699285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.515931, - 48.563374 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LANNILIS SIEGE BORNE 2", - "ref": "FRCPIE6699285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.524313, - 45.030881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Ouest", - "ref": "FRIONE4334", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.482988, - 48.449832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Place Saint Jean - 134777", - "ref": "FRS28E13477", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508255, - 49.119967 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Verdun Saint-Nicolas Nord", - "ref": "FRIONE4137", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.877246, - 48.072141 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV BORNE 1", - "ref": "FRCPIE6638625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.877246, - 48.072141 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV BORNE 1", - "ref": "FRCPIE6638625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87392, - 48.0687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GERARDMER - PLACE DU TILLEUL - 177260 - CCS", - "ref": "FRS88E17726", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87392, - 48.0687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GERARDMER - PLACE DU TILLEUL - 177260 - CCS", - "ref": "FRS88E17726", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.876856, - 48.072562 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV BORNE 2", - "ref": "FRCPIE6638635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.876856, - 48.072562 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HMV BORNE 2", - "ref": "FRCPIE6638635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923522, - 49.2444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.524313, - 45.030881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Ouest", - "ref": "FRIONE43340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923522, - 49.2444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923522, - 49.2444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923522, - 49.2444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gueux", - "ref": "FRIONE40260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923522, - 49.2444 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Gueux", - "ref": "FRIONE4026", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.524313, - 45.030881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Ouest", - "ref": "FRIONE43340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.524313, - 45.030881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Ouest", - "ref": "FRIONE43340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.524313, - 45.030881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Ouest", - "ref": "FRIONE43340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.730978, - 46.480447 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HAILO FR BORNE 4", - "ref": "FRCPIE6644645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.014208, - 48.471682 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA LOUPE - Place de l'hôtel de ville - 134195", - "ref": "FRS28E13419", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.06768176, - 47.24563167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Pôle d'activités - 112534", - "ref": "FRS18E11253", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.06768176, - 47.24563167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VIERZON - Pôle d'activités - 112534", - "ref": "FRS18E11253", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.75174608, - 50.3234446 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sainte Catherine", - "ref": "FRIENE002801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.75174608, - 50.3234446 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sainte Catherine", - "ref": "FRIENE002801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.75174608, - 50.3234446 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sainte Catherine", - "ref": "FRIENE002802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.75174608, - 50.3234446 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sainte Catherine", - "ref": "FRIENE002802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.015, - 48.1736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PLAINFAINE - Place de l'Eglise - 177421 - CCS", - "ref": "FRS88E17742", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.015, - 48.1736 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PLAINFAINE - Place de l'Eglise - 177421 - CCS", - "ref": "FRS88E17742", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.198119, - 48.766006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139441", - "ref": "FRS28E13944", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.198119, - 48.766006 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139441", - "ref": "FRS28E13944", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873564, - 50.173438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Saint-Léger", - "ref": "FRFASE331000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06775, - 46.94724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CUFFY - Le Pont Canal - 117885", - "ref": "FRS18E11788", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06775, - 46.94724 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CUFFY - Le Pont Canal - 117885", - "ref": "FRS18E11788", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.175825, - 46.849766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LES COLONNADES BORNE 1", - "ref": "FRCPIE6651395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.334795, - 45.169865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Est", - "ref": "FRIONE43230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38806432, - 47.08333836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Juranville - 97770", - "ref": "FRS18E9777", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38806432, - 47.08333836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Juranville - 97770", - "ref": "FRS18E9777", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.117433, - 46.99243 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAROST - Place François Chapus - 200950", - "ref": "FRS18E20095", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.117433, - 46.99243 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAROST - Place François Chapus - 200950", - "ref": "FRS18E20095", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.334795, - 45.169865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Est", - "ref": "FRIONE43230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.334795, - 45.169865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Est", - "ref": "FRIONE43230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.334795, - 45.169865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Est", - "ref": "FRIONE43230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.334795, - 45.169865 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac Est", - "ref": "FRIONE4323", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.175825, - 46.849766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LES COLONNADES BORNE 1", - "ref": "FRCPIE6651395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40308834, - 47.08186564 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parking Anatole France - 98496", - "ref": "FRS18E9849", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40308834, - 47.08186564 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parking Anatole France - 98496", - "ref": "FRS18E9849", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.456284, - 47.371248 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guérande", - "ref": "FRIENE006801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.456284, - 47.371248 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guérande", - "ref": "FRIENE006801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.456284, - 47.371248 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guérande", - "ref": "FRIENE006802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.456284, - 47.371248 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Guérande", - "ref": "FRIENE006802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.290792, - 48.76059 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VERT-EN-DROUAIS - Rue de l'Eglise - 139425", - "ref": "FRS28E13942", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418853, - 47.076978 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parking Pyrotechnie - 96970", - "ref": "FRS18E9697", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.71346, - 46.80106 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BANNEGON - Place saint Georges -117205", - "ref": "FRS18E19642", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.396898, - 48.610175 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TREVERAY - 122901 - Mairie", - "ref": "FRS55E12290", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.861169, - 49.360989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Bosgouet Sud", - "ref": "FRFASE331030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39871737, - 47.0807 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parking Hôtel de Ville - 95968", - "ref": "FRS18E9596", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39871737, - 47.0807 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Parking Hôtel de Ville - 95968", - "ref": "FRS18E9596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48205299, - 45.119945 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Léon-sur-l'Isle", - "ref": "FRIENE003802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48205299, - 45.119945 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Léon-sur-l'Isle", - "ref": "FRIENE003802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48205299, - 45.119945 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Léon-sur-l'Isle", - "ref": "FRIENE003801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48205299, - 45.119945 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Saint-Léon-sur-l'Isle", - "ref": "FRIENE003801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22542, - 48.680789 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TOMBLAINES - PARKING BOIS LA DAME - 187398", - "ref": "FRN54E18739", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22542, - 48.680789 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TOMBLAINES - PARKING BOIS LA DAME - 187398", - "ref": "FRN54E18739", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595775, - 43.388968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Os-Marsillon", - "ref": "FRIENE003001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99387, - 43.892162 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Beaumont-de-Lomagne", - "ref": "FRIENE004602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99387, - 43.892162 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Beaumont-de-Lomagne", - "ref": "FRIENE004602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99387, - 43.892162 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Beaumont-de-Lomagne", - "ref": "FRIENE004601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595775, - 43.388968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Os-Marsillon", - "ref": "FRIENE003001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99387, - 43.892162 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Beaumont-de-Lomagne", - "ref": "FRIENE004601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06458, - 46.579872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bourbon-l'Archambault", - "ref": "FRIENE005202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06458, - 46.579872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bourbon-l'Archambault", - "ref": "FRIENE005202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06458, - 46.579872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bourbon-l'Archambault", - "ref": "FRIENE005201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06458, - 46.579872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Bourbon-l'Archambault", - "ref": "FRIENE005201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595775, - 43.388968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Os-Marsillon", - "ref": "FRIENE003002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595775, - 43.388968 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Os-Marsillon", - "ref": "FRIENE003002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45450", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.158265, - 45.548788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Arclusaz", - "ref": "FRIONE4099", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.158265, - 45.548788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Arclusaz", - "ref": "FRIONE40990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.158265, - 45.548788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Arclusaz", - "ref": "FRIONE40990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.158265, - 45.548788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Arclusaz", - "ref": "FRIONE40990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.158265, - 45.548788 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Arclusaz", - "ref": "FRIONE40990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE45451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525098, - 45.030878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Est", - "ref": "FRIONE40870", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.156923, - 48.908117 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EPPENDORF BORNE 4", - "ref": "FRCPIE6727085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.190681, - 50.186031 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT RAILLENCOURT", - "ref": "FRCPIE6690045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.190681, - 50.186031 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT RAILLENCOURT", - "ref": "FRCPIE6690045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.700614, - 47.437236 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "3C CLIM TOURS", - "ref": "FRCPIE6689415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.700614, - 47.437236 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "3C CLIM TOURS", - "ref": "FRCPIE6689415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525098, - 45.030878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Est", - "ref": "FRIONE4087", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525098, - 45.030878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Est", - "ref": "FRIONE40870", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525098, - 45.030878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Est", - "ref": "FRIONE40870", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150379, - 43.528739 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Sud", - "ref": "FRIONE4545", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525098, - 45.030878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pech Montat Est", - "ref": "FRIONE40870", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49106235, - 47.50032088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Portes d'Angers Sud", - "ref": "FRIONE10140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49106235, - 47.50032088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Portes d'Angers Sud", - "ref": "FRIONE10140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49106235, - 47.50032088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Portes d'Angers Sud", - "ref": "FRIONE10140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49106235, - 47.50032088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Portes d'Angers Sud", - "ref": "FRIONE10140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49106235, - 47.50032088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Portes d'Angers Sud", - "ref": "FRIONE10140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49106235, - 47.50032088 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Portes d'Angers Sud", - "ref": "FRIONE10140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187658, - 44.405928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mas D'Agenais", - "ref": "FRIONE4407", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489556, - 43.450393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE DC 02", - "ref": "FRCPIE6714275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45410", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.67127, - 48.0259 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST AME - RUE DU STADE - 184031 - CCS", - "ref": "FRS88E18403", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.67127, - 48.0259 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST AME - RUE DU STADE - 184031 - CCS", - "ref": "FRS88E18403", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205307, - 44.70102 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maurs", - "ref": "FRIENE004802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205307, - 44.70102 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maurs", - "ref": "FRIENE004802", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205307, - 44.70102 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maurs", - "ref": "FRIENE004801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205307, - 44.70102 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Maurs", - "ref": "FRIENE004801", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489556, - 43.450393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE DC 02", - "ref": "FRCPIE6739225", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489556, - 43.450393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE DC 02", - "ref": "FRCPIE6714285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.053657, - 49.26282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UNILABS BIO CT REIMS PT", - "ref": "FRCPIE6645895", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.053657, - 49.26282 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UNILABS BIO CT REIMS PT", - "ref": "FRCPIE6645895", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.241716, - 43.43521 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VITROLLES 4", - "ref": "FRCPIE6642565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.692941, - 48.973818 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MAGNANVILLE", - "ref": "FRCPIE6666625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.692941, - 48.973818 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MAGNANVILLE", - "ref": "FRCPIE6666625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE4541", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048383, - 46.904192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Herbiers", - "ref": "FRIONE45411", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489556, - 43.450393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE DC 02", - "ref": "FRCPIE6714285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489556, - 43.450393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE DC 02", - "ref": "FRCPIE6714275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392879, - 49.203458 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CCI CAEN STATION 1", - "ref": "FRCPIE6600375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489556, - 43.450393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE DC 02", - "ref": "FRCPIE6707215", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912729", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912728", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912692", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353249, - 48.856136 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_011", - "ref": "FRTNMETERRA54011", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353249, - 48.856136 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_011", - "ref": "FRTNMETERRA54011", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353249, - 48.856136 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_011", - "ref": "FRTNMETERRA54010", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353249, - 48.856136 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "TERRA_54_011", - "ref": "FRTNMETERRA54010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219219, - 47.146574 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", - "ref": "FRS18E18433", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219219, - 47.146574 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", - "ref": "FRS18E18433", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.237583, - 48.005493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CROYES-SUR-LE-LOIR - Piscine - 127485", - "ref": "FRS28E13080", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.348317, - 48.079206 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUDUN - Place de Schweinfurt - 127481", - "ref": "FRS28E12748", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.348317, - 48.079206 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUDUN - Place de Schweinfurt - 127481", - "ref": "FRS28E12748", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.344566, - 47.602342 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4750 - Mail Pierre Charlot", - "ref": "FRS41E475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.344566, - 47.602342 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS 4750 - Mail Pierre Charlot", - "ref": "FRS41E475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36893, - 47.063792 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Daurat - 178309", - "ref": "FRS18E17831", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36893, - 47.063792 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Daurat - 178309", - "ref": "FRS18E17830", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392879, - 49.203458 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CCI CAEN STATION 1", - "ref": "FRCPIE6600375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912730", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912731", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912788", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.275326, - 48.007193 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Vôge les Bains", - "ref": "FRIENE003402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.176307, - 47.308871 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT NAZAIRE", - "ref": "FRCPIE6666445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.176307, - 47.308871 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT NAZAIRE", - "ref": "FRCPIE6666445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15351203, - 45.66017323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Veyre", - "ref": "FRIONE4169", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15351203, - 45.66017323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Veyre", - "ref": "FRIONE41690", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15351203, - 45.66017323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Veyre", - "ref": "FRIONE41690", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15351203, - 45.66017323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Veyre", - "ref": "FRIONE41690", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15351203, - 45.66017323 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Veyre", - "ref": "FRIONE41690", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.275326, - 48.007193 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Vôge les Bains", - "ref": "FRIENE003402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912789", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.275326, - 48.007193 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Vôge les Bains", - "ref": "FRIENE003401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.275326, - 48.007193 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "La Vôge les Bains", - "ref": "FRIENE003401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.545844, - 49.614343 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bolleville Ouest", - "ref": "FRIONE4319", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.545844, - 49.614343 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bolleville Ouest", - "ref": "FRIONE43190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.545844, - 49.614343 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bolleville Ouest", - "ref": "FRIONE43190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME09911355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372304, - 48.85239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Paris | Rue du Faubourg Saint-Antoine 45", - "ref": "FRTNME08912790", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.088926, - 48.856103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de L'Obrion", - "ref": "FRFASE331080", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87324, - 47.42393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOULLERET - Eglise - 117188", - "ref": "FRS18E11718", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.345357, - 43.3590418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc SUD", - "ref": "FRSHEE176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1547538, - 45.6828638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de la plaine du Forez Ouest HW", - "ref": "FRSHEE157", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1547538, - 45.6828638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de la plaine du Forez Ouest HW", - "ref": "FRSHEE157", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1547538, - 45.6828638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de la plaine du Forez Ouest HW", - "ref": "FRSHEE158", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1547538, - 45.6828638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de la plaine du Forez Ouest HW", - "ref": "FRSHEE158", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1547538, - 45.6828638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de la plaine du Forez Ouest HW", - "ref": "FRSHEE158", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685784, - 44.311302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UTILE LAPALUD BORNE 2", - "ref": "FRCPIE6664335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685784, - 44.311302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UTILE LAPALUD BORNE 2", - "ref": "FRCPIE6664335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685784, - 44.311302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UTILE LAPALUD BORNE 2", - "ref": "FRCPIE6664345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685784, - 44.311302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UTILE LAPALUD BORNE 2", - "ref": "FRCPIE6664345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566574, - 43.654568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hagetmau", - "ref": "FRIENE005101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566574, - 43.654568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hagetmau", - "ref": "FRIENE005101", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566574, - 43.654568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hagetmau", - "ref": "FRIENE005102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566574, - 43.654568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hagetmau", - "ref": "FRIENE005102", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.345357, - 43.3590418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc SUD", - "ref": "FRSHEE174", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.345357, - 43.3590418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc SUD", - "ref": "FRSHEE174", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.345357, - 43.3590418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc SUD", - "ref": "FRSHEE174", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.345357, - 43.3590418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc SUD", - "ref": "FRSHEE176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1547538, - 45.6828638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de la plaine du Forez Ouest HW", - "ref": "FRSHEE157", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.155946, - 44.027508 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U BLAYE MINES BLAYE 2", - "ref": "FRCPIE6553755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.155946, - 44.027508 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U BLAYE MINES BLAYE 2", - "ref": "FRCPIE6553755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322924, - 43.214493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CARCASSONNE CGE", - "ref": "FRCPIE6641115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24499596, - 43.33458687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Garonne", - "ref": "FRIONE40180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24499596, - 43.33458687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Garonne", - "ref": "FRIONE40180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24499596, - 43.33458687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Garonne", - "ref": "FRIONE40180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24499596, - 43.33458687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Garonne", - "ref": "FRIONE40180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24499596, - 43.33458687 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Garonne", - "ref": "FRIONE4018", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.787667, - 47.140961 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MANTHELAN 1279", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.787667, - 47.140961 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MANTHELAN 1279", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322924, - 43.214493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CARCASSONNE CGE", - "ref": "FRCPIE6641115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.155946, - 44.027508 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U BLAYE MINES BLAYE 2", - "ref": "FRCPIE6553735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.426494, - 49.723263 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quièvrecourt", - "ref": "FRIENE009701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.426494, - 49.723263 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quièvrecourt", - "ref": "FRIENE009701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.426494, - 49.723263 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quièvrecourt", - "ref": "FRIENE009702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.426494, - 49.723263 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Quièvrecourt", - "ref": "FRIENE009702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.774126, - 48.845738 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANAULT LES DAMES", - "ref": "FRS51E5391", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.774126, - 48.845738 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANAULT LES DAMES", - "ref": "FRS51E5391", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.155946, - 44.027508 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U BLAYE MINES BLAYE 2", - "ref": "FRCPIE6553735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.345357, - 43.3590418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Béziers-Montblanc SUD", - "ref": "FRSHEE176", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.142684, - 48.410725 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Charmont-sous-Barbuise HW", - "ref": "FRSHEE25", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253033, - 44.870544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Garde", - "ref": "FRIONE43260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.142684, - 48.410725 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell- France Aire de Charmont-sous-Barbuise HW", - "ref": "FRSHEE25", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.170852, - 49.362772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAZANCOURT - 44731 - Rue Jean Jaurès", - "ref": "FRS51E4473", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.170852, - 49.362772 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAZANCOURT - 44731 - Rue Jean Jaurès", - "ref": "FRS51E4473", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.353508, - 48.418167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT GEORGES SUR EURE - Eglise - 137362", - "ref": "FRS28E13736", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.772468, - 48.461236 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU - Rue Emile Labiche - 134756", - "ref": "FRS28E13475", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102101, - 44.267239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Lauzerte", - "ref": "FRIENE009501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102101, - 44.267239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Lauzerte", - "ref": "FRIENE009501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102101, - 44.267239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Lauzerte", - "ref": "FRIENE009502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.102101, - 44.267239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Lauzerte", - "ref": "FRIENE009502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48852, - 48.45289 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHARTRES - Place Drouaise - 126231", - "ref": "FRS28E12623", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7547021, - 48.1252516 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vezin-le-Coquet", - "ref": "FRIENE35353A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7547021, - 48.1252516 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vezin-le-Coquet", - "ref": "FRIENE35353A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7547021, - 48.1252516 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vezin-le-Coquet", - "ref": "FRIENE35353A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7547021, - 48.1252516 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vezin-le-Coquet", - "ref": "FRIENE35353A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7547021, - 48.1252516 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vezin-le-Coquet", - "ref": "FRIENE35353A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45819, - 48.417249 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUISANT - Rue Jean Perrin - 137353", - "ref": "FRS28E13735", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.689164, - 48.522625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GALLARDON - Rue Guy Pouillé - 178731", - "ref": "FRS28E17873", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87324, - 47.42393 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOULLERET - Eglise - 117188", - "ref": "FRS18E11718", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0353191, - 44.7455306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Auriolles", - "ref": "FRIENE008402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0353191, - 44.7455306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Auriolles", - "ref": "FRIENE008402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0353191, - 44.7455306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Auriolles", - "ref": "FRIENE008401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.991867, - 48.753599 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FERE CHAMPENOISE - 44684 - Rue de l'Eglise", - "ref": "FRS51E4468", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.746969, - 47.346501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AVERTIN- 60636 - Allée du Chesne", - "ref": "FRS37E6063", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.746969, - 47.346501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT AVERTIN- 60636 - Allée du Chesne", - "ref": "FRS37E6063", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39603, - 48.943368 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a0f9abb23fb6dc695ab59", - "ref": "FRTNME18B92615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.857445, - 50.25722 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PERFORMANCE_PRO BORNE 1", - "ref": "FRCPIE6708045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.857445, - 50.25722 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PERFORMANCE_PRO BORNE 1", - "ref": "FRCPIE6708045", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.946034, - 50.310412 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE PRO&CIE 1", - "ref": "FRCPIE6473655", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.991867, - 48.753599 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FERE CHAMPENOISE - 44684 - Rue de l'Eglise", - "ref": "FRS51E4468", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.682168, - 49.307914 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FISMES - 44705 - Rue du Docteur Genillon", - "ref": "FRS51E4470", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0353191, - 44.7455306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Auriolles", - "ref": "FRIENE008401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.682168, - 49.307914 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "FISMES - 44705 - Rue du Docteur Genillon", - "ref": "FRS51E4470", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3394, - 49.299799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontfaverger-Moronvilliers", - "ref": "FRIENE006401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3394, - 49.299799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontfaverger-Moronvilliers", - "ref": "FRIENE006401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3394, - 49.299799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontfaverger-Moronvilliers", - "ref": "FRIENE006402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3394, - 49.299799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontfaverger-Moronvilliers", - "ref": "FRIENE006402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.910292, - 49.250571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GUEUX - 44708 - Place des Lacs", - "ref": "FRS51E4470", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.910292, - 49.250571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GUEUX - 44708 - Place des Lacs", - "ref": "FRS51E4471", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253033, - 44.870544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Garde", - "ref": "FRIONE4326", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253033, - 44.870544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Garde", - "ref": "FRIONE43260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12869, - 43.293939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nissan-Lez-Enserune", - "ref": "FRIENE009602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.679734, - 48.552142 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc", - "ref": "FRS51E4363", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420088, - 46.314092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Est", - "ref": "FRIONE4024", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.514877, - 48.987472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURTISOLS", - "ref": "FRS51E5048", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.514877, - 48.987472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COURTISOLS", - "ref": "FRS51E5048", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE43910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE43910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE43910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE43910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE43910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE43910", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701123, - 45.137638 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Périgueux Sud", - "ref": "FRIONE4391", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Chatanay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Chatanay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Chatanay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Chatanay", - "ref": "FRIONE40440", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mionnay Chatanay", - "ref": "FRIONE4044", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5202, - 44.855926 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED BERGERAC", - "ref": "FRCPIE6668835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5202, - 44.855926 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED BERGERAC", - "ref": "FRCPIE6668835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420088, - 46.314092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Est", - "ref": "FRIONE40240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420088, - 46.314092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Est", - "ref": "FRIONE40240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420088, - 46.314092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Est", - "ref": "FRIONE40240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.052668, - 48.14336 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAPELLE ROYALE - Rue jean moulin - 134851", - "ref": "FRS28E13485", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12869, - 43.293939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nissan-Lez-Enserune", - "ref": "FRIENE009602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12869, - 43.293939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nissan-Lez-Enserune", - "ref": "FRIENE009601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12869, - 43.293939 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Nissan-Lez-Enserune", - "ref": "FRIENE009601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59294, - 49.049168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U FAULQUEMONT BORNE 1", - "ref": "FRCPIE6600955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59294, - 49.049168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U FAULQUEMONT BORNE 1", - "ref": "FRCPIE6600955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59294, - 49.049168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U FAULQUEMONT BORNE 1", - "ref": "FRCPIE6600945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59294, - 49.049168 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U FAULQUEMONT BORNE 1", - "ref": "FRCPIE6600945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66933846, - 47.6509206 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Derval", - "ref": "FRIENE003702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420088, - 46.314092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Est", - "ref": "FRIONE40240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361102, - 46.688275 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MONCEAU L MINES", - "ref": "FRCPIE6731715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.256576, - 47.288056 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E LECLERC BORNE 2", - "ref": "FRCPIE6731085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.256576, - 47.288056 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E LECLERC BORNE 2", - "ref": "FRCPIE6731085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.256576, - 47.288056 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E LECLERC BORNE 2", - "ref": "FRCPIE6731795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.256576, - 47.288056 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E LECLERC BORNE 2", - "ref": "FRCPIE6731795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.256576, - 47.288056 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E LECLERC BORNE 2", - "ref": "FRCPIE6731805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.256576, - 47.288056 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "E LECLERC BORNE 2", - "ref": "FRCPIE6731805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.364287, - 48.229263 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ALLUYES - Av Chevallier Debeausse - 129291", - "ref": "FRS28E12929", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.679734, - 48.552142 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc", - "ref": "FRS51E4364", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253033, - 44.870544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Garde", - "ref": "FRIONE43260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416918, - 46.313059 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Ouest", - "ref": "FRIONE40200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE90", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE90", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE90", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE91", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE91", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE91", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE91", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.009818, - 48.971941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVIZE - 43907 - Rue du bourg Joli", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.009818, - 48.971941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVIZE - 43907 - Rue du bourg Joli", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.944203, - 48.347049 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GOMMERVILLE - 50 Route de Voves - 129084", - "ref": "FRS28E12908", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.117894, - 49.049605 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TOURS SUR MARNE - 43909 - Avenue de Champagne", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.117894, - 49.049605 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TOURS SUR MARNE - 43909 - Avenue de Champagne", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400005, - 45.461682 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-ETIENNE1", - "ref": "FRCPIE6557675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400005, - 45.461682 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-ETIENNE1", - "ref": "FRCPIE6557675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400005, - 45.461682 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-ETIENNE1", - "ref": "FRCPIE6678495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400005, - 45.461682 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ST-ETIENNE1", - "ref": "FRCPIE6678495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253033, - 44.870544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Garde", - "ref": "FRIONE43260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4342274, - 44.6459629 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Terres de Graves Nord", - "ref": "FRSHEE90", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.808141, - 48.92467 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTMORT LUCY - 43905 - Place Général de Gaulle", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.808141, - 48.92467 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTMORT LUCY - 43905 - Place Général de Gaulle", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.435292, - 47.411919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ENNORDRES - La Surprise - 147553", - "ref": "FRS18E14755", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416918, - 46.313059 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Ouest", - "ref": "FRIONE40200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416918, - 46.313059 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Ouest", - "ref": "FRIONE40200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416918, - 46.313059 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Ouest", - "ref": "FRIONE40200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416918, - 46.313059 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Boismandé Ouest", - "ref": "FRIONE4020", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.814318, - 48.58333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ANGLURE - 43647 - Place de la République", - "ref": "FRS51E15167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.814318, - 48.58333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ANGLURE - 43647 - Place de la République", - "ref": "FRS51E4364", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.742543, - 48.082374 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TERMINIER - Rue de charette - 141733", - "ref": "FRS28E14173", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.435292, - 47.411919 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ENNORDRES - La Surprise - 147553", - "ref": "FRS18E14755", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995718, - 47.851507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Created 2021-02-01 15:55 con: 1", - "ref": "FRS41E5288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.637889, - 47.436748 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.637889, - 47.436748 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.946328, - 49.082391 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HAUTVILLERS - 43897 - Rue des Côtes de Lhery", - "ref": "FRS51E4389", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.946328, - 49.082391 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "HAUTVILLERS - 43897 - Rue des Côtes de Lhery", - "ref": "FRS51E4389", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.758175, - 49.100557 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATILLONS SUR MARNE - 43901 - Rue de Madeleine", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.758175, - 49.100557 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATILLONS SUR MARNE - 43901 - Rue de Madeleine", - "ref": "FRS51E4390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.995718, - 47.851507 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Created 2021-02-01 15:55 con: 1", - "ref": "FRS41E5287", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME18B92448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME18B92449", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME18B92450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431708, - 49.060851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 65", - "ref": "FRCPIE6737475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08911696", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08911696", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08911388", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48209, - 46.72506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ORVAL - Route de Lignières - 142815", - "ref": "FRS18E14281", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48209, - 46.72506 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ORVAL - Route de Lignières - 142815", - "ref": "FRS18E14281", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.477834, - 50.342911 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VALENCIENNES", - "ref": "FRCPIE6580765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.477834, - 50.342911 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VALENCIENNES", - "ref": "FRCPIE6580765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.378539, - 46.296224 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitou-Charentes", - "ref": "FRIONE1248", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.378539, - 46.296224 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitou-Charentes", - "ref": "FRIONE12480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.378539, - 46.296224 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitou-Charentes", - "ref": "FRIONE12480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.378539, - 46.296224 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitou-Charentes", - "ref": "FRIONE12480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.378539, - 46.296224 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitou-Charentes", - "ref": "FRIONE12480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41071, - 43.632423 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TOULOUSE NORD", - "ref": "FRCPIE6580595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41071, - 43.632423 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TOULOUSE NORD", - "ref": "FRCPIE6580595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85591286, - 48.27086799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Val Neuvy", - "ref": "FRSPSESHEL71", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.531531, - 48.5411 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MERCK SITES EUR BORNE P2-01", - "ref": "FRCPIE6721065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.531531, - 48.5411 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MERCK SITES EUR BORNE P2-01", - "ref": "FRCPIE6721065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912512", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912512", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912519", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME09911216", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401046, - 44.611744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AUBENAS", - "ref": "FRCPIE6581995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61283782, - 47.66849239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPEIGNE SUR DEME 1246", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61283782, - 47.66849239 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "EPEIGNE SUR DEME 1246", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME18B93139", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME18B93139", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME09990180", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME09990180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME09911216", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912519", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME09910716", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912881", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912881", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912880", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912880", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912520", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353733, - 48.856471 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "18B93139", - "ref": "FRTNME08912520", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431708, - 49.060851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 65", - "ref": "FRCPIE6737475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431708, - 49.060851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 65", - "ref": "FRCPIE6737455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286503, - 49.928469 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AMIENS", - "ref": "FRCPIE6582005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431708, - 49.060851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 65", - "ref": "FRCPIE6737455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE83", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE83", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE82", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE82", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE81", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE81", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE81", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE81", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.049856, - 49.050755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hambach", - "ref": "FRIENE003202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.049856, - 49.050755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hambach", - "ref": "FRIENE003202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.049856, - 49.050755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hambach", - "ref": "FRIENE003201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.049856, - 49.050755 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Hambach", - "ref": "FRIENE003201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112239, - 47.599944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PLOUHARNEL BORNE 2", - "ref": "FRCPIE6579905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112239, - 47.599944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PLOUHARNEL BORNE 2", - "ref": "FRCPIE6579905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112239, - 47.599944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PLOUHARNEL BORNE 2", - "ref": "FRCPIE6579895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112239, - 47.599944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PLOUHARNEL BORNE 2", - "ref": "FRCPIE6579895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112239, - 47.599944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PLOUHARNEL BORNE 2", - "ref": "FRCPIE6579885", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE84", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7046561, - 44.743648 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Est A63", - "ref": "FRSHEE84", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772478, - 46.54389 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U OLONNE OLONNE SUR MER", - "ref": "FRCPIE6579955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.038965, - 44.033749 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CARPENTRAS", - "ref": "FRCPIE6608375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064025, - 43.924904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUUPER U BORNE 1", - "ref": "FRCPIE6580435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064025, - 43.924904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUUPER U BORNE 1", - "ref": "FRCPIE6580435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064025, - 43.924904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUUPER U BORNE 1", - "ref": "FRCPIE6580425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064025, - 43.924904 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUUPER U BORNE 1", - "ref": "FRCPIE6580425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9507519, - 47.34592915 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DIERRE 1242", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9507519, - 47.34592915 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DIERRE 1242", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.038965, - 44.033749 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CARPENTRAS", - "ref": "FRCPIE6608375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70021078, - 46.97447173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DESCARTES 1241", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772478, - 46.54389 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U OLONNE OLONNE SUR MER", - "ref": "FRCPIE6579955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70021078, - 46.97447173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DESCARTES 1241", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315531, - 46.16964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 1", - "ref": "FRCPIE6580355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315531, - 46.16964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 1", - "ref": "FRCPIE6580355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315531, - 46.16964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 1", - "ref": "FRCPIE6560525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315531, - 46.16964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 1", - "ref": "FRCPIE6560525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772478, - 46.54389 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U OLONNE OLONNE SUR MER", - "ref": "FRCPIE6579965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772478, - 46.54389 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U OLONNE OLONNE SUR MER", - "ref": "FRCPIE6579965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401046, - 44.611744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED AUBENAS", - "ref": "FRCPIE6581995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286503, - 49.928469 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AMIENS", - "ref": "FRCPIE6582005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.625555, - 47.707641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GIEN", - "ref": "FRCPIE6517135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.768273, - 47.395589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX DAMES 1258 - Anciens combattants", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE330150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77859839, - 47.36839944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LARCAY 1264", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77859839, - 47.36839944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LARCAY 1264", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62615408, - 47.43926466 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62615408, - 47.43926466 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26067, - 47.8371 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPERU BORNE 2 DC", - "ref": "FRCPIE6638045", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26067, - 47.8371 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPERU BORNE 2 DC", - "ref": "FRCPIE6638035", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963056, - 46.096296 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Valleiry Sud", - "ref": "FRIONE4098", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963056, - 46.096296 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Valleiry Sud", - "ref": "FRIONE40980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963056, - 46.096296 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Valleiry Sud", - "ref": "FRIONE40980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963056, - 46.096296 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Valleiry Sud", - "ref": "FRIONE40980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523729, - 49.854847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Villers-Bretonneux", - "ref": "FRFASE331050", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.906228, - 45.048606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LE PUY", - "ref": "FRCPIE6588555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.906228, - 45.048606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LE PUY", - "ref": "FRCPIE6588555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.072355, - 49.049365 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT OSNY", - "ref": "FRCPIE6589265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.030362, - 43.137959 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA GARDE", - "ref": "FRCPIE6589545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.030362, - 43.137959 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA GARDE", - "ref": "FRCPIE6589545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23585, - 48.6512 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LANEUVEVILLE - Parking du cimetière - 187519", - "ref": "FRN54E18752", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23585, - 48.6512 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LANEUVEVILLE - Parking du cimetière - 187519", - "ref": "FRN54E18751", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.181994, - 47.938954 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE DIRECTION", - "ref": "FRCPIE6631485", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.719126, - 44.361721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED PIERRELATT", - "ref": "FRCPIE6589465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.719126, - 44.361721 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED PIERRELATT", - "ref": "FRCPIE6589465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.072355, - 49.049365 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT OSNY", - "ref": "FRCPIE6589265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.80337011, - 46.9202394 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE GRAND PRESSIGNY 1266", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.80018, - 47.621586 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PENBOCH BORNE 1", - "ref": "FRCPIE6589125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.80018, - 47.621586 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PENBOCH BORNE 1", - "ref": "FRCPIE6589125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.288579, - 45.888311 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LIMOGES", - "ref": "FRCPIE6588995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.288579, - 45.888311 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LIMOGES", - "ref": "FRCPIE6588995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355484, - 43.594881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FORMATION TLSE BORNE 2", - "ref": "FRCPIE6721155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355484, - 43.594881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "FORMATION TLSE BORNE 2", - "ref": "FRCPIE6721155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.80337011, - 46.9202394 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LE GRAND PRESSIGNY 1266", - "ref": "FRS37E126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963056, - 46.096296 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Valleiry Sud", - "ref": "FRIONE40980", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.768273, - 47.395589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA VILLE AUX DAMES 1258 - Anciens combattants", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.850804, - 48.651863 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BUCHELAY RAMBOUILLET 1", - "ref": "FRCPIE6535055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359933, - 49.317803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA CAPRICIEUSE BORNE OMAHA", - "ref": "FRCPIE6733705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE86", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE85", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE85", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE85", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE85", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66514559, - 47.35048561 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUE LES TOURS 1251", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66514559, - 47.35048561 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JOUE LES TOURS 1251", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.266909, - 47.282613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COTEAUX SUR LOIRE 1250 - Ingrandes", - "ref": "FRS37E137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.266909, - 47.282613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COTEAUX SUR LOIRE 1250 - Ingrandes", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.261484, - 44.557674 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED DECAZEVILLE", - "ref": "FRCPIE6582395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.261484, - 44.557674 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED DECAZEVILLE", - "ref": "FRCPIE6582395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09635437, - 47.1818339 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GENILLE 1249", - "ref": "FRS37E134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09635437, - 47.1818339 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "GENILLE 1249", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.958707, - 45.708229 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT-PRIEST 1", - "ref": "FRCPIE6582075", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.958707, - 45.708229 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SAINT-PRIEST 1", - "ref": "FRCPIE6582075", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.049431, - 43.400154 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BRIGNOLES", - "ref": "FRCPIE6582065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.049431, - 43.400154 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BRIGNOLES", - "ref": "FRCPIE6582065", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE86", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE87", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE87", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264781, - 48.936485 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT GENNEVILLIERS", - "ref": "FRCPIE6585715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359933, - 49.317803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA CAPRICIEUSE BORNE OMAHA", - "ref": "FRCPIE6733705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.415382, - 46.34256 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT THONON", - "ref": "FRCPIE6586685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.415382, - 46.34256 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT THONON", - "ref": "FRCPIE6586685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.808017, - 50.30778 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ARRAS _", - "ref": "FRCPIE6586635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.808017, - 50.30778 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ARRAS _", - "ref": "FRCPIE6586635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.664064, - 48.845473 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BUSSY-ST-MARTIN", - "ref": "FRCPIE6585765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.664064, - 48.845473 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BUSSY-ST-MARTIN", - "ref": "FRCPIE6585765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264781, - 48.936485 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT GENNEVILLIERS", - "ref": "FRCPIE6585715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE88", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.598175, - 43.668793 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AUCH 1", - "ref": "FRCPIE6584335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.598175, - 43.668793 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AUCH 1", - "ref": "FRCPIE6584335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38108, - 46.073036 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MONTBLANC HOTEL BORNE 02", - "ref": "FRCPIE6584255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38108, - 46.073036 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MONTBLANC HOTEL BORNE 02", - "ref": "FRCPIE6584255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.381368, - 46.072613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MONTBLANC HOTEL BORNE 01", - "ref": "FRCPIE6583625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.381368, - 46.072613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MONTBLANC HOTEL BORNE 01", - "ref": "FRCPIE6583625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7037549, - 44.7456293 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Bordeaux-Cestas Ouest A63", - "ref": "FRSHEE88", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.625555, - 47.707641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR GIEN", - "ref": "FRCPIE6517135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.435117, - 48.255846 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED SELESTAT 1", - "ref": "FRCPIE6579405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.186692, - 48.669613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032", - "ref": "FRN54E18703", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.488107, - 49.091958 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VERNON", - "ref": "FRCPIE6605525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9873037, - 47.53765557 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUTRECHE 1198", - "ref": "FRS37E119", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.273755, - 45.337849 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Lafayette Lorlanges", - "ref": "FRSPSESHEL41", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.988131, - 47.411565 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AMBOISE 1184 - Château", - "ref": "FRS37E118", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.988131, - 47.411565 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AMBOISE 1184 - Château", - "ref": "FRS37E118", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706887, - 47.615333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 2", - "ref": "FRCPIE6571345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706887, - 47.615333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 2", - "ref": "FRCPIE6571345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.154907, - 45.682211 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de la Plaine du Forez Ouest", - "ref": "FRSPSESHEL111", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.917294, - 48.743286 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EBC RECHARGE BORNE 1", - "ref": "FRCPIE6655025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.917294, - 48.743286 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "EBC RECHARGE BORNE 1", - "ref": "FRCPIE6655025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.705724, - 47.613509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 4", - "ref": "FRCPIE6571365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.705724, - 47.613509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 4", - "ref": "FRCPIE6571365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.705724, - 47.613509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 4", - "ref": "FRCPIE6571335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.705724, - 47.613509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 4", - "ref": "FRCPIE6571335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.705724, - 47.613509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 4", - "ref": "FRCPIE6571325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.705724, - 47.613509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U GREZ N STATION 4", - "ref": "FRCPIE6571325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.453566, - 42.742843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL GROUPE SCOLAIRE", - "ref": "FRCPIE6737755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.453566, - 42.742843 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL GROUPE SCOLAIRE", - "ref": "FRCPIE6737755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9873037, - 47.53765557 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUTRECHE 1198", - "ref": "FRS37E119", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE43970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE43970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE44020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16848028, - 47.27856391 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGUEIL 1208 - Rue Jean Causseret", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE4402", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE44020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE44020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE44020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE44020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585734, - 50.826737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Laurent", - "ref": "FRIONE44020", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.920065, - 46.991234 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BETZ LE CHÂTEAU 1206", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE43970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.920065, - 46.991234 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BETZ LE CHÂTEAU 1206", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18304333, - 47.20550704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVOINE 1200", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18304333, - 47.20550704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AVOINE 1200", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE4397", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE43970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE43970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79825, - 50.927053 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Coquelles", - "ref": "FRIONE43970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.488107, - 49.091958 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VERNON", - "ref": "FRCPIE6605525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.425486, - 48.78011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ALFORTVILLE", - "ref": "FRCPIE6571185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60313761, - 47.02086795 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CELLE SAINT AVANT 1214", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34403912, - 43.36099509 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Béziers Montblanc Nord", - "ref": "FRSPSESHEL11", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.024265, - 48.309339 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TROYES", - "ref": "FRCPIE6567525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.024265, - 48.309339 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TROYES", - "ref": "FRCPIE6567525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132804, - 50.718786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOURCOING", - "ref": "FRCPIE6567455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132804, - 50.718786 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOURCOING", - "ref": "FRCPIE6567455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.332159, - 43.70836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU BEAULIEU SUPER U", - "ref": "FRCPIE6642475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.332159, - 43.70836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU BEAULIEU SUPER U", - "ref": "FRCPIE6642475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.332159, - 43.70836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU BEAULIEU SUPER U", - "ref": "FRCPIE6567205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.332159, - 43.70836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SU BEAULIEU SUPER U", - "ref": "FRCPIE6567205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.115542, - 50.653805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MARCQ-EN-BAREUL", - "ref": "FRCPIE6567135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.115542, - 50.653805 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MARCQ-EN-BAREUL", - "ref": "FRCPIE6567135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.029245, - 48.629593 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA SAUCELLE - Place de l'Eglise - 128795", - "ref": "FRS28E12879", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.065324, - 48.069102 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU BORNE CLIENT", - "ref": "FRCPIE6566565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.065324, - 48.069102 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU BORNE CLIENT", - "ref": "FRCPIE6566565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.460777, - 42.740571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL PARKING RDC", - "ref": "FRCPIE6699585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.460777, - 42.740571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL PARKING RDC", - "ref": "FRCPIE6699585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.460777, - 42.740571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL PARKING RDC", - "ref": "FRCPIE6699575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.460777, - 42.740571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MAIRIE SMDL PARKING RDC", - "ref": "FRCPIE6699575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.812358, - 45.855017 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire du Haut Forez Sud", - "ref": "FRSPSESHEL91", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.877382, - 46.186811 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED GUERET", - "ref": "FRCPIE6570275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.436381, - 48.217011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED EPINAL (VOSGES)", - "ref": "FRCPIE6571155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.436381, - 48.217011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED EPINAL (VOSGES)", - "ref": "FRCPIE6571155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204112, - 43.373619 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU FLASSANS SUPER U 2", - "ref": "FRCPIE6570455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204112, - 43.373619 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU FLASSANS SUPER U 2", - "ref": "FRCPIE6570455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204112, - 43.373619 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU FLASSANS SUPER U 2", - "ref": "FRCPIE6570445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204112, - 43.373619 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPERU FLASSANS SUPER U 2", - "ref": "FRCPIE6570445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5528702, - 49.07246803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Vémars Est", - "ref": "FRSPSESHEL152", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.877382, - 46.186811 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED GUERET", - "ref": "FRCPIE6570275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.393657, - 47.000005 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Braslou 11017 - Rue Principale", - "ref": "FRS37E1101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.393657, - 47.000005 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Braslou 11017 - Rue Principale", - "ref": "FRS37E1101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432419, - 49.061372 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 59", - "ref": "FRCPIE6737275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16848028, - 47.27856391 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGUEIL 1208 - Rue Jean Causseret", - "ref": "FRS37E120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60313761, - 47.02086795 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CELLE SAINT AVANT 1214", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.435117, - 48.255846 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED SELESTAT 1", - "ref": "FRCPIE6579405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.171081, - 47.211405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", - "ref": "FRS37E774", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625275, - 47.054038 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DRACHE 1244", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.456806, - 50.332881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED PROUVY", - "ref": "FRCPIE6576985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.456806, - 50.332881 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED PROUVY", - "ref": "FRCPIE6576985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.26093, - 44.679571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SALVIADIS U EXPRESS", - "ref": "FRCPIE6576965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.26093, - 44.679571 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SALVIADIS U EXPRESS", - "ref": "FRCPIE6576965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.335507, - 47.610383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Rue de la Vall Maillard - 139033", - "ref": "FRS41E13903", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.335507, - 47.610383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Rue de la Vall Maillard - 139033", - "ref": "FRS41E13903", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.335507, - 47.610383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Rue de la Vall Maillard - 139033", - "ref": "FRS41E13903", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.335507, - 47.610383 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Rue de la Vall Maillard - 139033", - "ref": "FRS41E13903", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.114081, - 49.39632 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ROUEN", - "ref": "FRCPIE6576835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.114081, - 49.39632 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ROUEN", - "ref": "FRCPIE6576835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.336053, - 47.610357 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Rue du Vall Maillard - 139063", - "ref": "FRS41E13906", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.336053, - 47.610357 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BLOIS - Rue du Vall Maillard - 139063", - "ref": "FRS41E13906", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.346, - 47.1584 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CRAVANT LES COTEAUX 21830 - Place Pierre Alliet", - "ref": "FRS37E2183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.632987, - 48.657458 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U PLESTIN SUPER U PLESTIN", - "ref": "FRCPIE6575785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.632987, - 48.657458 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U PLESTIN SUPER U PLESTIN", - "ref": "FRCPIE6575785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.633191, - 48.992067 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Rosny sur Seine Sud", - "ref": "FRSPSESHEL61", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625275, - 47.054038 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DRACHE 1244", - "ref": "FRS37E124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.657566, - 46.272776 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT OYONNAX", - "ref": "FRCPIE6577935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.657566, - 46.272776 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT OYONNAX", - "ref": "FRCPIE6577935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347042, - 43.35903 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Béziers Montblanc Sud", - "ref": "FRSPSESHEL21", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.171081, - 47.211405 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", - "ref": "FRS37E774", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2211991, - 47.38725302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTINVOIR 1233", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.96435995, - 47.18394345 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAMBOURG SUR INDRE 1216", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2211991, - 47.38725302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CONTINVOIR 1233", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE41380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24037957, - 47.16745011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 1226 - Parking de la Brêche", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24037957, - 47.16745011 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHINON 1226 - Parking de la Brêche", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64957872, - 47.6595272 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEMILLE SUR DEME 1224", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64957872, - 47.6595272 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEMILLE SUR DEME 1224", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46238452, - 47.25496397 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEILLE 1222", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46238452, - 47.25496397 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHEILLE 1222", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE4466", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641617, - 43.074883 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Pamiers", - "ref": "FRIONE44660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6971043, - 47.34927895 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAMBRAY LES TOURS 1218", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6971043, - 47.34927895 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAMBRAY LES TOURS 1218", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.96435995, - 47.18394345 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHAMBOURG SUR INDRE 1216", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE41380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE41380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE41380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.067522, - 46.189118 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TROISGROS IGUERANDE", - "ref": "FRCPIE6631675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804213, - 50.289375 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ARRAS", - "ref": "FRCPIE6573245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-18:00,Tu 06:30-18:00,We 06:30-18:00,Th 06:30-18:00,Fr 06:30-18:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804213, - 50.289375 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ARRAS", - "ref": "FRCPIE6573245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-18:00,Tu 06:30-18:00,We 06:30-18:00,Th 06:30-18:00,Fr 06:30-18:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.494947, - 47.276351 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATILLON SUR CHER - Rue de la mairie - 204266", - "ref": "FRS41E20426", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.494947, - 47.276351 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATILLON SUR CHER - Rue de la mairie - 204266", - "ref": "FRS41E20426", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398609, - 47.063632 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Val d'Auron - 98422", - "ref": "FRS18E9842", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398609, - 47.063632 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Val d'Auron - 98422", - "ref": "FRS18E9842", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.067522, - 46.189118 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TROISGROS IGUERANDE", - "ref": "FRCPIE6631675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45853597, - 47.34623877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CINQ MARS LA PILE 1230", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE41380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45853597, - 47.34623877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CINQ MARS LA PILE 1230", - "ref": "FRS37E123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.834738, - 48.302818 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATENOIS - Allée Pré le Duc - 163450 - CCS", - "ref": "FRS88E16345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.834738, - 48.302818 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATENOIS - Allée Pré le Duc - 163450 - CCS", - "ref": "FRS88E16345", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.93017391, - 47.2602472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CIGOGNE 1228", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.93017391, - 47.2602472 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CIGOGNE 1228", - "ref": "FRS37E122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE4138", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Haut Koenigsbourg", - "ref": "FRIONE41380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.186692, - 48.669613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032", - "ref": "FRN54E18703", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025806, - 44.120483 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UEXPRESS BORNE 1", - "ref": "FRCPIE6589695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME18B92932", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578674, - 48.467261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Bois Paris", - "ref": "FRIONE12650", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.050931, - 50.628119 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF WAZEMMES 1", - "ref": "FRCPIE6599885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.050931, - 50.628119 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF WAZEMMES 1", - "ref": "FRCPIE6599885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.735517, - 47.288104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEIGNE 1330 - Centre Abbé Fiot", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.735517, - 47.288104 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VEIGNE 1330 - Centre Abbé Fiot", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE77", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE77", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE77", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE76", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE76", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE75", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE75", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE75", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE74", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE74", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE73", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65567564, - 43.46925139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de l'Arc Sud HW", - "ref": "FRSHEE73", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65528244, - 47.41894606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 1308 - René Coulon", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65528244, - 47.41894606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT CYR SUR LOIRE 1308 - René Coulon", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.398564, - 43.545336 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TOULOUSE 1", - "ref": "FRCPIE6599965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.790509, - 47.660766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IT TRATTORIA BORNE 2", - "ref": "FRCPIE6659155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61646419, - 47.11129467 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINTE MAURE DE TOURAINE 1310", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.494957, - 46.725501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St AMAND-MONTROND - Hôpital - 179113", - "ref": "FRS18E17911", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.494957, - 46.725501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St AMAND-MONTROND - Hôpital - 179113", - "ref": "FRS18E17911", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.159707, - 48.776394 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-rue de Couchot-66236", - "ref": "FRS55E6623", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.159707, - 48.776394 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-rue de Couchot-66236", - "ref": "FRS55E6623", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.764199, - 48.146023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SODALEC-PACE STATION 1", - "ref": "FRCPIE6600295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.764199, - 48.146023 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SODALEC-PACE STATION 1", - "ref": "FRCPIE6600295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.790509, - 47.660766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IT TRATTORIA BORNE 2", - "ref": "FRCPIE6659145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.398564, - 43.545336 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TOULOUSE 1", - "ref": "FRCPIE6599965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.790509, - 47.660766 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IT TRATTORIA BORNE 2", - "ref": "FRCPIE6659145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.455994, - 43.64403 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOULOUSE N", - "ref": "FRCPIE6600265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.455994, - 43.64403 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOULOUSE N", - "ref": "FRCPIE6600265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157357, - 46.137482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING WEIDNER STATION 1", - "ref": "FRCPIE6600025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157357, - 46.137482 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING WEIDNER STATION 1", - "ref": "FRCPIE6600025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.398564, - 43.545336 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TOULOUSE 1", - "ref": "FRCPIE6599985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.398564, - 43.545336 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT TOULOUSE 1", - "ref": "FRCPIE6599985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578674, - 48.467261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Bois Paris", - "ref": "FRIONE1265", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578674, - 48.467261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Bois Paris", - "ref": "FRIONE12650", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392652, - 49.20378 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CCI CAEN STATION 2", - "ref": "FRCPIE6600385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578674, - 48.467261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Bois Paris", - "ref": "FRIONE12650", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57393, - 48.360859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Achères - La Forêt", - "ref": "FRFASE330230", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57393, - 48.360859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Achères - La Forêt", - "ref": "FRFASE330230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57393, - 48.360859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Achères - La Forêt", - "ref": "FRFASE330230", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57393, - 48.360859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire d’Achères - La Forêt", - "ref": "FRFASE330230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.542878, - 47.246675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SACHE 1302", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02625743, - 46.96858706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT FLOVIER 1305", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578674, - 48.467261 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Bois Paris", - "ref": "FRIONE12650", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12586534, - 47.28450308 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT NICOLAS DE BOURGUEIL 1306", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12586534, - 47.28450308 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT NICOLAS DE BOURGUEIL 1306", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.166973, - 48.773186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-parking de la gare-66183", - "ref": "FRS55E6619", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.166973, - 48.773186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-parking de la gare-66183", - "ref": "FRS55E6619", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.166973, - 48.773186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-parking de la gare-66183", - "ref": "FRS55E6618", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.166973, - 48.773186 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 BAR LE DUC-parking de la gare-66183", - "ref": "FRS55E6618", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02625743, - 46.96858706 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT FLOVIER 1305", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE44031", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.769341, - 47.22798 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT BRANCHS 1304", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.769341, - 47.22798 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT BRANCHS 1304", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.431382, - 48.425499 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ASNF BORNE 1", - "ref": "FRCPIE6660255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.431382, - 48.425499 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ASNF BORNE 1", - "ref": "FRCPIE6660255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.431382, - 48.425499 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ASNF BORNE 1", - "ref": "FRCPIE6660165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.431382, - 48.425499 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ASNF BORNE 1", - "ref": "FRCPIE6660165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Mornas Village", - "ref": "FRIONE4403", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61646419, - 47.11129467 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINTE MAURE DE TOURAINE 1310", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.392652, - 49.20378 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CCI CAEN STATION 2", - "ref": "FRCPIE6600385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63142611, - 47.1661501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontaine Colette", - "ref": "FRIONE1013", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE40790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61630268, - 47.34229894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BALLAN MIRE 1332", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7991226, - 47.41115111 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOUVRAY 1331", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7991226, - 47.41115111 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOUVRAY 1331", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.138686, - 50.746462 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT RONCQ", - "ref": "FRCPIE6602945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.138686, - 50.746462 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT RONCQ", - "ref": "FRCPIE6602945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.662529, - 49.331998 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 SPINCOURT-chemin court-66456", - "ref": "FRS55E6645", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.662529, - 49.331998 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 SPINCOURT-chemin court-66456", - "ref": "FRS55E6645", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42726, - 47.318301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE AUX NAUX 1699", - "ref": "FRS37E170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42726, - 47.318301 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE AUX NAUX 1699", - "ref": "FRS37E169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371032, - 48.829294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT PARIS 13", - "ref": "FRCPIE6602545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371032, - 48.829294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT PARIS 13", - "ref": "FRCPIE6602545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57813368, - 47.44355115 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT ROCH 1325", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57813368, - 47.44355115 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT ROCH 1325", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE4079", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE40790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE40790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE40790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61630268, - 47.34229894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BALLAN MIRE 1332", - "ref": "FRS37E133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7769873, - 47.47546806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tours La Longue Vue", - "ref": "FRIONE10120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7769873, - 47.47546806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tours La Longue Vue", - "ref": "FRIONE10120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.729763, - 48.106302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA RETARDAIS 2", - "ref": "FRCPIE6603765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.760154, - 48.515332 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", - "ref": "FRS28E17563", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.234158, - 46.193253 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ANNEMASSE", - "ref": "FRCPIE6604025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.234158, - 46.193253 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ANNEMASSE", - "ref": "FRCPIE6604025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7501, - 47.6644 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES HERMITES 19684 - Rue de la fontaine", - "ref": "FRS37E1968", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7501, - 47.6644 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES HERMITES 19684 - Rue de la fontaine", - "ref": "FRS37E1968", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.829824, - 48.622734 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR RAMBOUILLET", - "ref": "FRCPIE6651895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.829824, - 48.622734 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR RAMBOUILLET", - "ref": "FRCPIE6651895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.729763, - 48.106302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA RETARDAIS 2", - "ref": "FRCPIE6603765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7769873, - 47.47546806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tours La Longue Vue", - "ref": "FRIONE10120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.729763, - 48.106302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA RETARDAIS 2", - "ref": "FRCPIE6603715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.729763, - 48.106302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT LA RETARDAIS 2", - "ref": "FRCPIE6603715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.438596, - 48.422931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHARTRES", - "ref": "FRCPIE6603595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.438596, - 48.422931 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHARTRES", - "ref": "FRCPIE6603595", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7769873, - 47.47546806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tours La Longue Vue", - "ref": "FRIONE10120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7769873, - 47.47546806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tours La Longue Vue", - "ref": "FRIONE10120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7769873, - 47.47546806 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tours La Longue Vue", - "ref": "FRIONE10120", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE40790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75572998, - 50.16728841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Baie de Somme", - "ref": "FRIONE40790", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.153017, - 44.4147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Biscarrosse", - "ref": "FRIENE008901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10745, - 47.030768 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bois Guillerot", - "ref": "FRIONE4123", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038942, - 47.262565 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "NETTO BORNE 1", - "ref": "FRCPIE6600975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038942, - 47.262565 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "NETTO BORNE 1", - "ref": "FRCPIE6600975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57855158, - 47.4981857 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEMBLANCAY 1315", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57855158, - 47.4981857 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEMBLANCAY 1315", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431325, - 49.061436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 09", - "ref": "FRCPIE6726645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431325, - 49.061436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 09", - "ref": "FRCPIE6726645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431325, - 49.061436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 09", - "ref": "FRCPIE6726635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431325, - 49.061436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 09", - "ref": "FRCPIE6726635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431325, - 49.061436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 09", - "ref": "FRCPIE6726625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.431325, - 49.061436 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 09", - "ref": "FRCPIE6726625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17219177, - 47.28483695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGUEIL 1210 - Place Marcelin", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17219177, - 47.28483695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGUEIL 1210 - Place Marcelin", - "ref": "FRS37E121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14284648, - 47.20235927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVIGNY EN VERON 1312 - Rue du Stade", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14284648, - 47.20235927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAVIGNY EN VERON 1312 - Rue du Stade", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.153017, - 44.4147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Biscarrosse", - "ref": "FRIENE008902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.153017, - 44.4147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Biscarrosse", - "ref": "FRIENE008902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.153017, - 44.4147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Biscarrosse", - "ref": "FRIENE008901", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.667944, - 47.073438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEPMES 1317", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.667944, - 47.073438 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SEPMES 1317", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.996808, - 43.5859 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MOUGINS", - "ref": "FRCPIE6601395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30915141, - 47.28568302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COTEAUX-SUR-LOIRE 1323", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10745, - 47.030768 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bois Guillerot", - "ref": "FRIONE41230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10745, - 47.030768 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bois Guillerot", - "ref": "FRIONE41230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10745, - 47.030768 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bois Guillerot", - "ref": "FRIONE41230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10745, - 47.030768 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bois Guillerot", - "ref": "FRIONE41230", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.728485, - 47.665035 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED VANNES", - "ref": "FRCPIE6602145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.728485, - 47.665035 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED VANNES", - "ref": "FRCPIE6602145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30915141, - 47.28568302 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "COTEAUX-SUR-LOIRE 1323", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35618, - 43.109285 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ASL GAOU BENAT BORNE 1", - "ref": "FRCPIE6601775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.996808, - 43.5859 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MOUGINS", - "ref": "FRCPIE6601395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35618, - 43.109285 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ASL GAOU BENAT BORNE 1", - "ref": "FRCPIE6601775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03475606, - 47.08256988 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT JEAN SAINT GERMAIN 1321", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03475606, - 47.08256988 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SAINT JEAN SAINT GERMAIN 1321", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69715172, - 47.24320891 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SORIGNY 1319 - 11 Novembre", - "ref": "FRS37E132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69715172, - 47.24320891 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SORIGNY 1319 - 11 Novembre", - "ref": "FRS37E131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.270227, - 48.558649 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 MONTIERS SUR SAULX-rue de l'abbaye-66319", - "ref": "FRS55E6632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.270227, - 48.558649 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "55 MONTIERS SUR SAULX-rue de l'abbaye-66319", - "ref": "FRS55E6631", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.542878, - 47.246675 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SACHE 1302", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63142611, - 47.1661501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontaine Colette", - "ref": "FRIONE10130", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025806, - 44.120483 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UEXPRESS BORNE 1", - "ref": "FRCPIE6589695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8670518, - 48.1660532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire d'Armor et d'Argoat - St Gilles", - "ref": "FRSHEE92", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598607, - 47.475704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U EXPRESS BEAUS STATION 1", - "ref": "FRCPIE6591685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598607, - 47.475704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U EXPRESS BEAUS STATION 1", - "ref": "FRCPIE6591685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598607, - 47.475704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U EXPRESS BEAUS STATION 1", - "ref": "FRCPIE6591675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598607, - 47.475704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U EXPRESS BEAUS STATION 1", - "ref": "FRCPIE6591675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623, - 45.277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ile Rose", - "ref": "FRIONE4315", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623, - 45.277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ile Rose", - "ref": "FRIONE43150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623, - 45.277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ile Rose", - "ref": "FRIONE43150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623, - 45.277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ile Rose", - "ref": "FRIONE43150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623, - 45.277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Ile Rose", - "ref": "FRIONE43150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.488611, - 46.98139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARIGNY MARMANDE 1281", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.488611, - 46.98139 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARIGNY MARMANDE 1281", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.791498, - 47.087225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.791498, - 47.087225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", - "ref": "FRS37E125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8670518, - 48.1660532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire d'Armor et d'Argoat - St Gilles", - "ref": "FRSHEE93", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8670518, - 48.1660532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire d'Armor et d'Argoat - St Gilles", - "ref": "FRSHEE93", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8670518, - 48.1660532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire d'Armor et d'Argoat - St Gilles", - "ref": "FRSHEE92", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8670518, - 48.1660532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire d'Armor et d'Argoat - St Gilles", - "ref": "FRSHEE92", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.934966, - 47.254709 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THENIOUX - Route de Tours - 170419", - "ref": "FRS18E17041", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.934966, - 47.254709 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "THENIOUX - Route de Tours - 170419", - "ref": "FRS18E17041", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6506905, - 47.44858502 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "METTRAY 1283 - Espace Coselia", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.358792, - 44.036716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CABLOTEC MTB CABLOTEC PARK", - "ref": "FRCPIE6593425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.274872, - 47.981613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CHANGE BORNE 1", - "ref": "FRCPIE6593935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.633864, - 43.707552 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ARLES", - "ref": "FRCPIE6649455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.633864, - 43.707552 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR ARLES", - "ref": "FRCPIE6649455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.344886, - 45.275403 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MAURIENNE", - "ref": "FRCPIE6593545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.344886, - 45.275403 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MAURIENNE", - "ref": "FRCPIE6593545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33434, - 47.779533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED LORIENT", - "ref": "FRCPIE6593495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33434, - 47.779533 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED LORIENT", - "ref": "FRCPIE6593495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.358792, - 44.036716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CABLOTEC MTB CABLOTEC PARK", - "ref": "FRCPIE6593425", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6506905, - 47.44858502 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "METTRAY 1283 - Espace Coselia", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE4538", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE45380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE45380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE45380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE45380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE45380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045629, - 47.271963 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Dijon Sud", - "ref": "FRIONE45380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8670518, - 48.1660532 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire d'Armor et d'Argoat - St Gilles", - "ref": "FRSHEE92", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175863, - 43.929691 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED ALBI", - "ref": "FRCPIE6644195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.274872, - 47.981613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CHANGE BORNE 1", - "ref": "FRCPIE6593945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175863, - 43.929691 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED ALBI", - "ref": "FRCPIE6644195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.845612, - 43.116997 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED SIX-FOURS", - "ref": "FRCPIE6590015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.119345, - 49.410973 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED BEAUVAIS", - "ref": "FRCPIE6589935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.119345, - 49.410973 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED BEAUVAIS", - "ref": "FRCPIE6589935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.284485, - 48.221164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED SENS", - "ref": "FRCPIE6589845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.284485, - 48.221164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED SENS", - "ref": "FRCPIE6589845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.834183, - 43.576667 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U EXPRESS STJEAN-DE-VEDAS", - "ref": "FRCPIE6589775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.834183, - 43.576667 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "U EXPRESS STJEAN-DE-VEDAS", - "ref": "FRCPIE6589775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.627502, - 44.88341 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BRIANCON", - "ref": "FRCPIE6589755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.627502, - 44.88341 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BRIANCON", - "ref": "FRCPIE6589755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.417, - 47.297864 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIGNIERES DE TOURAINE 1272", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.417, - 47.297864 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIGNIERES DE TOURAINE 1272", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.182008, - 47.939134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE SALARIES 1", - "ref": "FRCPIE6631495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.182008, - 47.939134 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U ARNAGE SALARIES 1", - "ref": "FRCPIE6631495", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.882544, - 44.232656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UEXPRESS STE Cé BORNE 1", - "ref": "FRCPIE6589745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.882544, - 44.232656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UEXPRESS STE Cé BORNE 1", - "ref": "FRCPIE6589745", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.882544, - 44.232656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UEXPRESS STE Cé BORNE 1", - "ref": "FRCPIE6589735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.882544, - 44.232656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "UEXPRESS STE Cé BORNE 1", - "ref": "FRCPIE6589735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.845612, - 43.116997 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED SIX-FOURS", - "ref": "FRCPIE6590015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144033, - 45.790619 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CLERMONT", - "ref": "FRCPIE6590025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144033, - 45.790619 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CLERMONT", - "ref": "FRCPIE6590025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.907528, - 50.950711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CALAIS", - "ref": "FRCPIE6595255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.907528, - 50.950711 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CALAIS", - "ref": "FRCPIE6595255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99534765, - 47.1288586 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LOCHES - Place de Verdun - 166912", - "ref": "FRS37E16691", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5827783, - 47.05354232 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAILLE 1277", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5827783, - 47.05354232 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MAILLE 1277", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.737815, - 45.994754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLFRANCHE SS", - "ref": "FRCPIE6590195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.737815, - 45.994754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLFRANCHE SS", - "ref": "FRCPIE6590195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65008968, - 47.61777534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LOUESTAULT 1275", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65008968, - 47.61777534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LOUESTAULT 1275", - "ref": "FRS37E127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99534765, - 47.1288586 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LOCHES - Place de Verdun - 166912", - "ref": "FRS37E16691", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.274872, - 47.981613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CHANGE BORNE 1", - "ref": "FRCPIE6593935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.274872, - 47.981613 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U CHANGE BORNE 1", - "ref": "FRCPIE6593945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63142611, - 47.1661501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontaine Colette", - "ref": "FRIONE10130", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115305, - 49.897972 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DIEPPE", - "ref": "FRCPIE6596925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91468289, - 47.22805033 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIGNAC SUR INDRE 1299", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753668, - 44.714666 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 10", - "ref": "FRCPIE6599275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.936446, - 43.58831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF MAUGUIO", - "ref": "FRCPIE6599095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.936446, - 43.58831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CCF MAUGUIO", - "ref": "FRCPIE6599095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.990664, - 47.443928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "POCE SUR CISSE 1298 - Clos du Potager", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.990664, - 47.443928 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "POCE SUR CISSE 1298 - Clos du Potager", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91468289, - 47.22805033 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REIGNAC SUR INDRE 1299", - "ref": "FRS37E135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.607115, - 50.694554 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BOULOGNE", - "ref": "FRCPIE6586915", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63142611, - 47.1661501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontaine Colette", - "ref": "FRIONE10130", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63142611, - 47.1661501 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Fontaine Colette", - "ref": "FRIONE10130", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109707, - 47.032073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Glanon", - "ref": "FRIONE4124", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109707, - 47.032073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Glanon", - "ref": "FRIONE41240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109707, - 47.032073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Glanon", - "ref": "FRIONE41240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109707, - 47.032073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Glanon", - "ref": "FRIONE41240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109707, - 47.032073 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Glanon", - "ref": "FRIONE41240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.607115, - 50.694554 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BOULOGNE", - "ref": "FRCPIE6586915", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64893365, - 47.51457851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROUZIERS DE TOURAINE 1300", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64893365, - 47.51457851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROUZIERS DE TOURAINE 1300", - "ref": "FRS37E130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753907, - 44.714785 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CESTAS 04", - "ref": "FRCPIE6599365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115305, - 49.897972 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR DIEPPE", - "ref": "FRCPIE6596925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401718, - 45.459377 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ST-ETIENNE 2", - "ref": "FRCPIE6596835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.789972, - 46.973452 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLY LE BRIGNON 1289", - "ref": "FRS37E128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401718, - 45.459377 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ST-ETIENNE 2", - "ref": "FRCPIE6596835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580008, - 48.468782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Gasville", - "ref": "FRIONE12640", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580008, - 48.468782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Gasville", - "ref": "FRIONE12640", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580008, - 48.468782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Gasville", - "ref": "FRIONE12640", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580008, - 48.468782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Gasville", - "ref": "FRIONE12640", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.091241, - 50.677842 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE MARCQ MARCQ", - "ref": "FRCPIE6595775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.091241, - 50.677842 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE MARCQ MARCQ", - "ref": "FRCPIE6595775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.730784, - 48.108593 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SODIS-RENNES BORNE 1", - "ref": "FRCPIE6595205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.730784, - 48.108593 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SODIS-RENNES BORNE 1", - "ref": "FRCPIE6595205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433205, - 48.873257 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BAGNOLET", - "ref": "FRCPIE6595195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433205, - 48.873257 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BAGNOLET", - "ref": "FRCPIE6595195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59375299, - 47.60272923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUVY LE ROI 1291", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59375299, - 47.60272923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUVY LE ROI 1291", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.105916, - 50.391205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED DOUAI", - "ref": "FRCPIE6594765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.105916, - 50.391205 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED DOUAI", - "ref": "FRCPIE6594765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.104915, - 49.027416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ERAGNY", - "ref": "FRCPIE6594145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.104915, - 49.027416 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ERAGNY", - "ref": "FRCPIE6594145", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.789972, - 46.973452 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NEUILLY LE BRIGNON 1289", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580008, - 48.468782 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chartres Gasville", - "ref": "FRIONE1264", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.229096, - 44.286754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cœur d'Aquitaine", - "ref": "FRIONE41400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.229096, - 44.286754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cœur d'Aquitaine", - "ref": "FRIONE41400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.477806, - 47.103448 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PARCAY SUR VIENNE 1295", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401525, - 45.459204 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ST-ETIENNE 1", - "ref": "FRCPIE6596825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401525, - 45.459204 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED ST-ETIENNE 1", - "ref": "FRCPIE6596825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0139662, - 47.10072025 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PERRUSSON 1296", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0139662, - 47.10072025 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PERRUSSON 1296", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48718, - 47.210396 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PROTHEOS STATION 1", - "ref": "FRCPIE6596525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48718, - 47.210396 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PROTHEOS STATION 1", - "ref": "FRCPIE6596525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.477806, - 47.103448 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PARCAY SUR VIENNE 1295", - "ref": "FRS37E138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.587558, - 48.113313 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ALIZES BORNE 1", - "ref": "FRCPIE6596035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.229096, - 44.286754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cœur d'Aquitaine", - "ref": "FRIONE41400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.587558, - 48.113313 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ALIZES BORNE 1", - "ref": "FRCPIE6596035", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229205, - 48.690167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLEBON", - "ref": "FRCPIE6595995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229205, - 48.690167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLEBON", - "ref": "FRCPIE6595995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108717, - 43.109537 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT HYERES", - "ref": "FRCPIE6595975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108717, - 43.109537 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT HYERES", - "ref": "FRCPIE6595975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.229096, - 44.286754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cœur d'Aquitaine", - "ref": "FRIONE4140", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.229096, - 44.286754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Cœur d'Aquitaine", - "ref": "FRIONE41400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187245, - 44.405234 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.187245, - 44.405234 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", - "ref": "FRIONE44070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.978652, - 43.639705 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SUPER U 1", - "ref": "FRCPIE6566105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790058, - 49.073637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Valmy Le Moulin", - "ref": "FRFASE331130", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.549262, - 47.600149 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SAINT-LOUIS", - "ref": "FRCPIE6663275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.549262, - 47.600149 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR SAINT-LOUIS", - "ref": "FRCPIE6663275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50502, - 46.72097 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St AMAND-MONTROND - Cours Manuel - 112836", - "ref": "FRS18E11283", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50502, - 46.72097 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St AMAND-MONTROND - Cours Manuel - 112836", - "ref": "FRS18E11283", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.457725, - 47.562823 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.457725, - 47.562823 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", - "ref": "FRS41E443", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.887593, - 47.544659 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEDOMER 4348 - Parking rue du Lavoir", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.887593, - 47.544659 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VILLEDOMER 4348 - Parking rue du Lavoir", - "ref": "FRS37E434", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.162406, - 43.421307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES U TECHNO BORNE 2", - "ref": "FRCPIE6544925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361102, - 46.688275 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT MONCEAU L MINES", - "ref": "FRCPIE6731715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.162406, - 43.421307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES U TECHNO BORNE 2", - "ref": "FRCPIE6528455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.162406, - 43.421307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES U TECHNO BORNE 2", - "ref": "FRCPIE6528455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.836453, - 47.565669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHAMPADIS BORNE 1", - "ref": "FRCPIE6528265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.836453, - 47.565669 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHAMPADIS BORNE 1", - "ref": "FRCPIE6528265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.85359, - 46.90976 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA BENETIERE BORNE 1", - "ref": "FRCPIE6528205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.85359, - 46.90976 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LA BENETIERE BORNE 1", - "ref": "FRCPIE6528205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790058, - 49.073637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Valmy Le Moulin", - "ref": "FRFASE331130", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315979, - 46.16987 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 8", - "ref": "FRCPIE6529785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315979, - 46.16987 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 8", - "ref": "FRCPIE6529785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315979, - 46.16987 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 8", - "ref": "FRCPIE6580375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.832382, - 49.281413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Trie-la-Ville", - "ref": "FRIENE006601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72181146, - 48.26436754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Darvault", - "ref": "FRIONE40810", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346573, - 43.658837 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ULIET ULIET 1", - "ref": "FRCPIE6683635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346573, - 43.658837 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ULIET ULIET 1", - "ref": "FRCPIE6683635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346573, - 43.658837 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ULIET ULIET 1", - "ref": "FRCPIE6683625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346573, - 43.658837 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ULIET ULIET 1", - "ref": "FRCPIE6683625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.832382, - 49.281413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Trie-la-Ville", - "ref": "FRIENE006602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.832382, - 49.281413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Trie-la-Ville", - "ref": "FRIENE006602", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.832382, - 49.281413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Trie-la-Ville", - "ref": "FRIENE006601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315979, - 46.16987 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 8", - "ref": "FRCPIE6580375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315442, - 46.169875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 5", - "ref": "FRCPIE6560545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315442, - 46.169875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 5", - "ref": "FRCPIE6560545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315442, - 46.169875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 5", - "ref": "FRCPIE6560535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315442, - 46.169875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 5", - "ref": "FRCPIE6560535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315442, - 46.169875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 5", - "ref": "FRCPIE6529795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315442, - 46.169875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 5", - "ref": "FRCPIE6529795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315979, - 46.16987 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MENODIS BORNE 8", - "ref": "FRCPIE6580405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790058, - 49.073637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Valmy Le Moulin", - "ref": "FRFASE331130", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790058, - 49.073637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Valmy Le Moulin", - "ref": "FRFASE331130", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72181146, - 48.26436754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Darvault", - "ref": "FRIONE40810", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.182904, - 43.549941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LFO BORNE 2", - "ref": "FRCPIE6546025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6736555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6736185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6736185", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6726845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6726845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.328964, - 48.070716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUDUN - Place du 18 Octobre - 127476", - "ref": "FRS28E12747", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.328964, - 48.070716 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHATEAUDUN - Place du 18 Octobre - 127476", - "ref": "FRS28E12747", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE4519", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45191", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6736555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6736905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6736905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.064557, - 48.974923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Keskastel-Ouest", - "ref": "FRFASE331150", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.182904, - 43.549941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LFO BORNE 2", - "ref": "FRCPIE6546025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.182904, - 43.549941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LFO BORNE 2", - "ref": "FRCPIE6528605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.182904, - 43.549941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LFO BORNE 2", - "ref": "FRCPIE6528605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.182904, - 43.549941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LFO BORNE 2", - "ref": "FRCPIE6527915", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.182904, - 43.549941 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "LFO BORNE 2", - "ref": "FRCPIE6527915", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.064557, - 48.974923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Keskastel-Ouest", - "ref": "FRFASE331150", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.064557, - 48.974923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Keskastel-Ouest", - "ref": "FRFASE331150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.064557, - 48.974923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Keskastel-Ouest", - "ref": "FRFASE331150", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6737115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.581239, - 48.317543 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIFFOL - Rue de l'Orme - 163471 - CCS", - "ref": "FRS88E16347", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.581239, - 48.317543 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIFFOL - Rue de l'Orme - 163471 - CCS", - "ref": "FRS88E16347", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.632298, - 48.2765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOVES - Piscine - 126260", - "ref": "FRS28E12626", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.632298, - 48.2765 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOVES - Piscine - 126260", - "ref": "FRS28E12625", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.122851, - 50.984165 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF GRAVELINES", - "ref": "FRCPIE6696955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.122851, - 50.984165 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BIOPATH HDF GRAVELINES", - "ref": "FRCPIE6696955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.432414, - 49.061637 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PARISGIVERNY 55", - "ref": "FRCPIE6737115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72181146, - 48.26436754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Darvault", - "ref": "FRIONE40810", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72181146, - 48.26436754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Darvault", - "ref": "FRIONE40810", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346915, - 43.658268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DAHERTLS CORLOG 6", - "ref": "FRCPIE6684585", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.371323, - 45.634283 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazelles sur Lyon", - "ref": "FRIENE004202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5813, - 48.04599 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST NABORD-rue de la croix st Jacques-150258-CCS", - "ref": "FRS88E15026", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5813, - 48.04599 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ST NABORD-rue de la croix st Jacques-150258-CCS", - "ref": "FRS88E15025", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.383636, - 48.307361 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOMEXY-rue sœur Sidonie-150251-CCS", - "ref": "FRS88E15025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.383636, - 48.307361 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOMEXY-rue sœur Sidonie-150251-CCS", - "ref": "FRS88E15025", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE4627", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE46270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE46270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE46270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE46270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE46270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.677737, - 48.594147 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hanches", - "ref": "FRIONE46270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96886, - 48.0297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTHUREUX SUR SAONE - 161826 - CCS", - "ref": "FRS88E16182", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96886, - 48.0297 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTHUREUX SUR SAONE - 161826 - CCS", - "ref": "FRS88E16182", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41480", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41481", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6534445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6534445", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE41481", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966165, - 45.562744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 2", - "ref": "FRCPIE6557945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966165, - 45.562744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 2", - "ref": "FRCPIE6557945", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966165, - 45.562744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 2", - "ref": "FRCPIE6557935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966165, - 45.562744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 2", - "ref": "FRCPIE6557935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966165, - 45.562744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 2", - "ref": "FRCPIE6534365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966165, - 45.562744 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 2", - "ref": "FRCPIE6534365", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5437517, - 43.1782826 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Corbières Nord", - "ref": "FRIONE4148", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.371323, - 45.634283 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazelles sur Lyon", - "ref": "FRIENE004202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.371323, - 45.634283 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazelles sur Lyon", - "ref": "FRIENE004201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72181146, - 48.26436754 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Darvault", - "ref": "FRIONE4081", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.371323, - 45.634283 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Chazelles sur Lyon", - "ref": "FRIENE004201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598651, - 45.610095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Léger Est", - "ref": "FRIONE43170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598651, - 45.610095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Léger Est", - "ref": "FRIONE43170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598651, - 45.610095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Léger Est", - "ref": "FRIONE43170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.346737, - 46.547078 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CULAN - Champ de foire - 148765", - "ref": "FRS18E14876", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.346737, - 46.547078 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CULAN - Champ de foire - 148765", - "ref": "FRS18E14876", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676055, - 48.591983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U HANCHES RETAIL 5", - "ref": "FRCPIE6530575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676055, - 48.591983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U HANCHES RETAIL 5", - "ref": "FRCPIE6530575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676055, - 48.591983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U HANCHES RETAIL 5", - "ref": "FRCPIE6530555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676055, - 48.591983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U HANCHES RETAIL 5", - "ref": "FRCPIE6530555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676055, - 48.591983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U HANCHES RETAIL 5", - "ref": "FRCPIE6530465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676055, - 48.591983 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U HANCHES RETAIL 5", - "ref": "FRCPIE6530465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375201, - 47.069203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Lautier - 107000", - "ref": "FRS18E10700", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375201, - 47.069203 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Lautier - 107000", - "ref": "FRS18E10700", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.774085, - 47.270106 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 2", - "ref": "FRCPIE6542705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.774085, - 47.270106 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 2", - "ref": "FRCPIE6542705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.774085, - 47.270106 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 2", - "ref": "FRCPIE6530295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.774085, - 47.270106 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SEM BORNE 2", - "ref": "FRCPIE6530295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598651, - 45.610095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Léger Est", - "ref": "FRIONE43170", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598651, - 45.610095 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint Léger Est", - "ref": "FRIONE4317", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.68091, - 47.819899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U BORNE PUBLIQUE4", - "ref": "FRCPIE6531025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03652099, - 43.59198274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bréguières Nord", - "ref": "FRIONE40320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.357699, - 47.834549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sablé-sur-Sarthe", - "ref": "FRIENE002402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.357699, - 47.834549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sablé-sur-Sarthe", - "ref": "FRIENE002402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.357699, - 47.834549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sablé-sur-Sarthe", - "ref": "FRIENE002401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.357699, - 47.834549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Sablé-sur-Sarthe", - "ref": "FRIENE002401", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03652099, - 43.59198274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bréguières Nord", - "ref": "FRIONE4032", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03652099, - 43.59198274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bréguières Nord", - "ref": "FRIONE40320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03652099, - 43.59198274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bréguières Nord", - "ref": "FRIONE40320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03652099, - 43.59198274 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bréguières Nord", - "ref": "FRIONE40320", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.68091, - 47.819899 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U BORNE PUBLIQUE4", - "ref": "FRCPIE6531025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE4685", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE46850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE46850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE46850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE46850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE46850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430753, - 46.701209 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Roche sur Yon", - "ref": "FRIONE46850", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.150044, - 43.529309 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hastingues Nord", - "ref": "FRIONE45190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346915, - 43.658268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DAHERTLS CORLOG 6", - "ref": "FRCPIE6684575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.978652, - 43.639705 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SUPER U 1", - "ref": "FRCPIE6566105", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81642, - 45.238924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BIVIERS BORNE 1", - "ref": "FRCPIE6552195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE47350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE47350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE47350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE47350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.767761, - 45.165133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AED ST-M.HERES", - "ref": "FRCPIE6735845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.767761, - 45.165133 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR AED ST-M.HERES", - "ref": "FRCPIE6735845", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.998884, - 49.217693 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEZANNES -1 - Pkg Louis Victor de Broglie - 49675", - "ref": "FRS51E4967", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.998884, - 49.217693 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEZANNES -1 - Pkg Louis Victor de Broglie - 49675", - "ref": "FRS51E4967", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559775, - 47.955226 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U MESLAY BORNE 2", - "ref": "FRCPIE6593605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559775, - 47.955226 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U MESLAY BORNE 2", - "ref": "FRCPIE6593605", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559775, - 47.955226 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U MESLAY BORNE 2", - "ref": "FRCPIE6560565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559775, - 47.955226 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U MESLAY BORNE 2", - "ref": "FRCPIE6560565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559775, - 47.955226 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U MESLAY BORNE 2", - "ref": "FRCPIE6510835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81642, - 45.238924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BIVIERS BORNE 1", - "ref": "FRCPIE6594565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81642, - 45.238924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BIVIERS BORNE 1", - "ref": "FRCPIE6594565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81642, - 45.238924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BIVIERS BORNE 1", - "ref": "FRCPIE6593355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81642, - 45.238924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BIVIERS BORNE 1", - "ref": "FRCPIE6593355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE47350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE47350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.012698, - 48.530831 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Plouer sur Rance", - "ref": "FRIONE4735", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624104, - 48.361737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rambervilliers", - "ref": "FRIENE006501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.738553, - 49.885189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541", - "ref": "FRS08E5754", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.814135, - 49.288572 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JONCHERY-SUR-VESLE", - "ref": "FRS51E6149", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.814135, - 49.288572 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JONCHERY-SUR-VESLE", - "ref": "FRS51E6149", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.427569, - 49.869541 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529", - "ref": "FRS08E5753", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.427569, - 49.869541 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529", - "ref": "FRS08E5752", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624104, - 48.361737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rambervilliers", - "ref": "FRIENE006502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624104, - 48.361737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rambervilliers", - "ref": "FRIENE006502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624104, - 48.361737 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Rambervilliers", - "ref": "FRIENE006501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35969, - 49.209799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE ICEP STATION 01", - "ref": "FRCPIE6601985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36394976, - 48.95182009 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", - "ref": "FRS51E12530", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36394976, - 48.95182009 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", - "ref": "FRS51E12530", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36394976, - 48.95182009 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", - "ref": "FRS51E1067", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36394976, - 48.95182009 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", - "ref": "FRS51E1067", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.996112, - 49.218544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie", - "ref": "FRS51E4968", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.996112, - 49.218544 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie", - "ref": "FRS51E4968", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35969, - 49.209799 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE ICEP STATION 01", - "ref": "FRCPIE6601985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81642, - 45.238924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BIVIERS BORNE 1", - "ref": "FRCPIE6552195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.23960961, - 48.1272092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vitré", - "ref": "FRIENE001002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.014127, - 49.482685 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VAUPALIERE 1", - "ref": "FRCPIE6585645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.23960961, - 48.1272092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vitré", - "ref": "FRIENE001002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43240", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427018, - 46.725151 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "638a101cbb23fb6dc695b185", - "ref": "FRTNME19B91197", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE43241", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Hauconcourt", - "ref": "FRIONE4324", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.23960961, - 48.1272092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vitré", - "ref": "FRIENE001001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.23960961, - 48.1272092 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Vitré", - "ref": "FRIENE001001", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE4542", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45421", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45421", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45421", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862591, - 45.74851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ALPTIS 25CAT PARC 37 38", - "ref": "FRCPIE6507285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.017597, - 46.451625 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rouille Sud", - "ref": "FRIONE45420", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862591, - 45.74851 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ALPTIS 25CAT PARC 37 38", - "ref": "FRCPIE6507285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.738553, - 49.885189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541", - "ref": "FRS08E5754", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.014127, - 49.482685 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VAUPALIERE 1", - "ref": "FRCPIE6585645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346915, - 43.658268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DAHERTLS CORLOG 6", - "ref": "FRCPIE6684575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60966, - 44.171306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agen", - "ref": "FRIONE43270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.708943, - 49.312189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MONTHOIS - Place de la mairie - DC 57716", - "ref": "FRS08E5771", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.300302, - 45.140801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CHATTE", - "ref": "FRCPIE6665965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.300302, - 45.140801 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CHATTE", - "ref": "FRCPIE6665965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782989, - 49.526756 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAIRON - 57547 - Lac Bairon", - "ref": "FRS08E20042", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782989, - 49.526756 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAIRON - 57547 - Lac Bairon", - "ref": "FRS08E20042", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.520988, - 49.924518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROCROI - Rue Noël Champagne - DC 57693", - "ref": "FRS08E5769", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.520988, - 49.924518 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROCROI - Rue Noël Champagne - DC 57693", - "ref": "FRS08E5769", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE95", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE95", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE95", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE95", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE94", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE94", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE94", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.60405, - 45.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Fenioux Est", - "ref": "FRSHEE94", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625257, - 49.828116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTCORNET DC", - "ref": "FRS08E5769", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625257, - 49.828116 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MONTCORNET DC", - "ref": "FRS08E5769", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.708943, - 49.312189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MONTHOIS - Place de la mairie - DC 57716", - "ref": "FRS08E5771", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744732, - 49.858676 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 BOGNY SUR MEUSE - Air camping car - DC 57722", - "ref": "FRS08E5772", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744732, - 49.858676 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 BOGNY SUR MEUSE - Air camping car - DC 57722", - "ref": "FRS08E5772", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417075, - 46.751937 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France", - "ref": "FRIONE4101", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346915, - 43.658268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DAHERTLS CORLOG 6", - "ref": "FRCPIE6684545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.346915, - 43.658268 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "DAHERTLS CORLOG 6", - "ref": "FRCPIE6684545", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387757, - 47.665885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Villerbon", - "ref": "FRIONE4080", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387757, - 47.665885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Villerbon", - "ref": "FRIONE40800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387757, - 47.665885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Villerbon", - "ref": "FRIONE40800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387757, - 47.665885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Villerbon", - "ref": "FRIONE40800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387757, - 47.665885 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Blois Villerbon", - "ref": "FRIONE40800", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417075, - 46.751937 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France", - "ref": "FRIONE41010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.599876, - 49.873325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 LES MAZURES Congrés DC 57726", - "ref": "FRS08E5772", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417075, - 46.751937 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France", - "ref": "FRIONE41010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417075, - 46.751937 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France", - "ref": "FRIONE41010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417075, - 46.751937 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Centre de la France", - "ref": "FRIONE41010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3467, - 43.658878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ULIET ULIET 3", - "ref": "FRCPIE6685935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3467, - 43.658878 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ULIET ULIET 3", - "ref": "FRCPIE6685935", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7179736, - 48.5387872 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Ostwald HW", - "ref": "FRSHEE78", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.599876, - 49.873325 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 LES MAZURES Congrés DC 57726", - "ref": "FRS08E5772", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60966, - 44.171306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agen", - "ref": "FRIONE43270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60966, - 44.171306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agen", - "ref": "FRIONE43270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.763445, - 49.513165 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547", - "ref": "FRS08E5769", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60966, - 44.171306 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agen", - "ref": "FRIONE43270", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806857, - 49.870549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 THILAY - Couture d'en bas - DC 57612", - "ref": "FRS08E5761", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806857, - 49.870549 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 THILAY - Couture d'en bas - DC 57612", - "ref": "FRS08E5761", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.499447, - 49.354924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MACHAULT - Place de la mairie - DC 57608", - "ref": "FRS08E5760", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.499447, - 49.354924 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 MACHAULT - Place de la mairie - DC 57608", - "ref": "FRS08E5760", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842865, - 49.883542 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 LES HAUTES RIVIERES-pl de la mairie DC 57604", - "ref": "FRS08E5760", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842865, - 49.883542 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 LES HAUTES RIVIERES-pl de la mairie DC 57604", - "ref": "FRS08E5760", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.578276, - 49.474329 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ATTIGNY DC", - "ref": "FRS08E5760", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.578276, - 49.474329 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ATTIGNY DC", - "ref": "FRS08E5759", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.103798, - 49.074974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MDF MOBILIER FRANCE", - "ref": "FRCPIE6513335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.103798, - 49.074974 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MDF MOBILIER FRANCE", - "ref": "FRCPIE6513335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.419153, - 49.698213 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SIGNY L ABBAYE - Plave Aristide Briand - 57592", - "ref": "FRS08E5759", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.419153, - 49.698213 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SIGNY L ABBAYE - Plave Aristide Briand - 57592", - "ref": "FRS08E5759", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.167409, - 48.768588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAR LE DUC - 81267 - Cinéma", - "ref": "FRS55E8127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.167409, - 48.768588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAR LE DUC - 81267 - Cinéma", - "ref": "FRS55E8127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.167409, - 48.768588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAR LE DUC - 81267 - Cinéma", - "ref": "FRS55E8126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.167409, - 48.768588 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAR LE DUC - 81267 - Cinéma", - "ref": "FRS55E8126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.763445, - 49.513165 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547", - "ref": "FRS08E5769", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.626666, - 49.890051 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES MAZURES - Rue des Hayettes - DC 57615", - "ref": "FRS08E5761", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.626666, - 49.890051 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LES MAZURES - Rue des Hayettes - DC 57615", - "ref": "FRS08E5761", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.539584, - 49.841842 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIMOGNE- Rue de la Gare - 57623", - "ref": "FRS08E5762", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765891, - 49.851378 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 BOGNY SUR MEUSE - Place Danton - DC- 57637", - "ref": "FRS08E5763", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.955605, - 46.319259 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HôTEL DE FRANCE BORNE 1", - "ref": "FRCPIE6518615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.955605, - 46.319259 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HôTEL DE FRANCE BORNE 1", - "ref": "FRCPIE6518615", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49431, - 49.788094 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROUVROY SUR AUDRY - 57687 - Grande Rue", - "ref": "FRS08E5768", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49431, - 49.788094 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ROUVROY SUR AUDRY - 57687 - Grande Rue", - "ref": "FRS08E5768", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.599154, - 43.285628 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AUBAGNE", - "ref": "FRCPIE6517155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.599154, - 43.285628 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT AUBAGNE", - "ref": "FRCPIE6517155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765891, - 49.851378 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 BOGNY SUR MEUSE - Place Danton - DC- 57637", - "ref": "FRS08E5763", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.603013, - 49.838277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RENWEZ -Place de l'Eglise - 57633", - "ref": "FRS08E5763", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.539584, - 49.841842 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RIMOGNE- Rue de la Gare - 57623", - "ref": "FRS08E5762", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.603013, - 49.838277 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RENWEZ -Place de l'Eglise - 57633", - "ref": "FRS08E5763", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.699761, - 49.395875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 VOUZIERS - rue Gambetta - DC 57629", - "ref": "FRS08E5763", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.699761, - 49.395875 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "08 VOUZIERS - rue Gambetta - DC 57629", - "ref": "FRS08E5762", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.279186, - 49.903185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SIGNY LE PETIT - 57627 - Place de l'église", - "ref": "FRS08E5762", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.279186, - 49.903185 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SIGNY LE PETIT - 57627 - Place de l'église", - "ref": "FRS08E5762", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4738, - 49.523656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUCQUY - 57625 - Gare", - "ref": "FRS08E5762", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4738, - 49.523656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUCQUY - 57625 - Gare", - "ref": "FRS08E5762", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557805", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557815", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557825", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001847, - 47.216809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Gevrey - Chambertin Ouest", - "ref": "FRFASE330260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852213, - 45.660712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ATMOSPHERES BORNE", - "ref": "FRCPIE6769685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852213, - 45.660712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "ATMOSPHERES BORNE", - "ref": "FRCPIE6769685", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378795, - 50.571808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rely", - "ref": "FRIONE4089", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378795, - 50.571808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rely", - "ref": "FRIONE40890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378795, - 50.571808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rely", - "ref": "FRIONE40890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378795, - 50.571808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rely", - "ref": "FRIONE40890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378795, - 50.571808 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Rely", - "ref": "FRIONE40890", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.577555, - 47.109985 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOYANT DE TOURAINE 1293", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.577555, - 47.109985 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "NOYANT DE TOURAINE 1293", - "ref": "FRS37E129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001847, - 47.216809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Gevrey - Chambertin Ouest", - "ref": "FRFASE330260", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001847, - 47.216809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Gevrey - Chambertin Ouest", - "ref": "FRFASE330260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630208, - 45.577663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Romagnieu", - "ref": "FRFASE330960", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82163, - 45.488418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VIENNE", - "ref": "FRCPIE6632165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390318, - 47.084091 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Place de la Nation - 140281", - "ref": "FRS18E14028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70136, - 49.400247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOUZIERS - 57619 - Rue du Champ de Foire", - "ref": "FRS08E5762", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70136, - 49.400247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "VOUZIERS - 57619 - Rue du Champ de Foire", - "ref": "FRS08E5761", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383278, - 49.395725 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JUNIVILLE - 57595 - Avenue de Quimper", - "ref": "FRS08E5759", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383278, - 49.395725 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "JUNIVILLE - 57595 - Avenue de Quimper", - "ref": "FRS08E5759", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39614, - 48.962298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE GAZZOLA DEPOT GMT", - "ref": "FRCPIE6551715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39614, - 48.962298 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE GAZZOLA DEPOT GMT", - "ref": "FRCPIE6551715", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390318, - 47.084091 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BOURGES - Place de la Nation - 140281", - "ref": "FRS18E14028", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957174, - 49.601797 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAUCOURT ET FLABA - 57539 - Place de la Halle", - "ref": "FRS08E5754", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82163, - 45.488418 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VIENNE", - "ref": "FRCPIE6632165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957174, - 49.601797 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "RAUCOURT ET FLABA - 57539 - Place de la Halle", - "ref": "FRS08E5753", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.642625, - 47.999847 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DOMMARTIN - Rue de Pont - 163280 - CCS", - "ref": "FRS88E16328", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.642625, - 47.999847 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DOMMARTIN - Rue de Pont - 163280 - CCS", - "ref": "FRS88E16328", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852069, - 43.456556 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 4", - "ref": "FRCPIE6610765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852069, - 43.456556 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 4", - "ref": "FRCPIE6610765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852069, - 43.456556 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 4", - "ref": "FRCPIE6550965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852069, - 43.456556 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "HYPER U BORNE 4", - "ref": "FRCPIE6550965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001847, - 47.216809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Gevrey - Chambertin Ouest", - "ref": "FRFASE330260", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE178", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201718, - 47.081187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Ste THORETTE - Route de Bourges - 148714", - "ref": "FRS18E14871", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201718, - 47.081187 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Ste THORETTE - Route de Bourges - 148714", - "ref": "FRS18E14871", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371119, - 46.701836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Chincé", - "ref": "FRIONE4043", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371119, - 46.701836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Chincé", - "ref": "FRIONE40430", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371119, - 46.701836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Chincé", - "ref": "FRIONE40430", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371119, - 46.701836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Chincé", - "ref": "FRIONE40430", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371119, - 46.701836 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Poitiers Chincé", - "ref": "FRIONE40430", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517406, - 48.990975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517406, - 48.990975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517406, - 48.990975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517406, - 48.990975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.836951, - 47.565651 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHAMPADIS BORNE 2", - "ref": "FRCPIE6543575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.836951, - 47.565651 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHAMPADIS BORNE 2", - "ref": "FRCPIE6543575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE4401", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40250", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770375", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40255", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.996295, - 43.593944 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "RAW PROVENCE 09", - "ref": "FRCPIE6770325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64276092, - 47.6033841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mailly-le-Chateau", - "ref": "FRIENE008702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64276092, - 47.6033841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mailly-le-Chateau", - "ref": "FRIENE008702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64276092, - 47.6033841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mailly-le-Chateau", - "ref": "FRIENE008701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64276092, - 47.6033841 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Mailly-le-Chateau", - "ref": "FRIENE008701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40255", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702388, - 44.004164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Tavel | A9/E15, La Languedocienne", - "ref": "FRIONE40255", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE178", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE178", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557845", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025925, - 49.25696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Erlon 1 - 7680", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09677, - 47.43294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontchateau", - "ref": "FRIENE004501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315192, - 43.209029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CARCASSONNE", - "ref": "FRCPIE6561965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315192, - 43.209029 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CARCASSONNE", - "ref": "FRCPIE6561965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03122394, - 49.25696581 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Hôtel de ville 2 - 7689", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03122394, - 49.25696581 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Hôtel de ville 2 - 7689", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156668, - 45.547654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Gelon", - "ref": "FRIONE4100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156668, - 45.547654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Gelon", - "ref": "FRIONE41000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156668, - 45.547654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Gelon", - "ref": "FRIONE41000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156668, - 45.547654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Gelon", - "ref": "FRIONE41000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156668, - 45.547654 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Val Gelon", - "ref": "FRIONE41000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036172, - 49.249946 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Gambetta 3 - 7686", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036172, - 49.249946 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Gambetta 3 - 7686", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036172, - 49.249946 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Gambetta 3 - 7686", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036172, - 49.249946 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Gambetta 3 - 7686", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15479, - 48.536616 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DIGNY - Rue de Marechal Leclerc - 171587", - "ref": "FRS28E17158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15479, - 48.536616 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DIGNY - Rue de Marechal Leclerc - 171587", - "ref": "FRS28E17158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025925, - 49.25696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Erlon 1 - 7680", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09677, - 47.43294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontchateau", - "ref": "FRIENE004501", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09677, - 47.43294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontchateau", - "ref": "FRIENE004502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09677, - 47.43294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Pontchateau", - "ref": "FRIENE004502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.939949, - 44.86543 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "POUSSY BORNE SUPERU BEAUMONT", - "ref": "FRCPIE6565565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.978652, - 43.639705 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SUPER U 1", - "ref": "FRCPIE6566095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.978652, - 43.639705 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U SUPER U 1", - "ref": "FRCPIE6566095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88317, - 46.782642 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "YZEURES-SUR-CREUSE 18319 - ZA Les Chalussons", - "ref": "FRS37E1831", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88317, - 46.782642 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "YZEURES-SUR-CREUSE 18319 - ZA Les Chalussons", - "ref": "FRS37E1831", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.683976, - 47.421294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 10699 - Rue de Tourcoing", - "ref": "FRS37E1070", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.683976, - 47.421294 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 10699 - Rue de Tourcoing", - "ref": "FRS37E1069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.939949, - 44.86543 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "POUSSY BORNE SUPERU BEAUMONT", - "ref": "FRCPIE6565565", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67656243, - 47.38439695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 10698 - Place Rabelais", - "ref": "FRS37E1069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.693481, - 50.443324 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAS PETIT BORNE 1", - "ref": "FRCPIE6562155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-12:00,Mo 14:00-18:00,Tu 08:00-12:00,Tu 14:00-18:00,We 08:00-12:00,We 14:00-18:00,Th 08:00-12:00,Th 14:00-18:00,Fr 08:00-12:00,Fr 14:00-18:00,Sa 08:00-12:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67656243, - 47.38439695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 10698 - Place Rabelais", - "ref": "FRS37E1069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67732483, - 47.3794927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 24226 - Rue Giraudeau", - "ref": "FRS37E2488", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67732483, - 47.3794927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 24226 - Rue Giraudeau", - "ref": "FRS37E2422", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6776078, - 47.36370564 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 10694 - Avenue Marcel Dassault", - "ref": "FRS37E1069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6776078, - 47.36370564 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Tours 10694 - Avenue Marcel Dassault", - "ref": "FRS37E1069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.81278, - 45.856003 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire du Haut Forez Nord", - "ref": "FRSPSESHEL101", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.693481, - 50.443324 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SAS PETIT BORNE 1", - "ref": "FRCPIE6562155", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-12:00,Mo 14:00-18:00,Tu 08:00-12:00,Tu 14:00-18:00,We 08:00-12:00,We 14:00-18:00,Th 08:00-12:00,Th 14:00-18:00,Fr 08:00-12:00,Fr 14:00-18:00,Sa 08:00-12:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025925, - 49.25696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Erlon 1 - 7680", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.025925, - 49.25696 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Erlon 1 - 7680", - "ref": "FRE10E768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE179", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.146781, - 43.867189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U COUST BORNE CLIENT", - "ref": "FRCPIE6558885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.662975, - 48.984947 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BUCHELAY BUCHELAY 1", - "ref": "FRCPIE6531355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.992031, - 46.010641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TROISGROS OUCHES", - "ref": "FRCPIE6629385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.992031, - 46.010641 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "TROISGROS OUCHES", - "ref": "FRCPIE6629385", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.117, - 49.468399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ASFELD - 57563 - Place Grand Cour", - "ref": "FRS08E5756", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.117, - 49.468399 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ASFELD - 57563 - Place Grand Cour", - "ref": "FRS08E5756", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.264165, - 49.584589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARGUT - 57702 - Rue de la Poste", - "ref": "FRS08E5770", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.264165, - 49.584589 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARGUT - 57702 - Rue de la Poste", - "ref": "FRS08E5770", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99298, - 49.651375 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REMILLY AILLICOURT - 57519 - Rue de Raucourt", - "ref": "FRS08E5752", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99298, - 49.651375 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "REMILLY AILLICOURT - 57519 - Rue de Raucourt", - "ref": "FRS08E5751", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE181", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE180", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE179", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8160508, - 45.406247 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Shell Aire de Roussilllon", - "ref": "FRSHEE179", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060857, - 47.260997 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUZILLE 1451", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.060857, - 47.260997 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LUZILLE 1451", - "ref": "FRS37E145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.358258, - 49.901528 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED AMIENS", - "ref": "FRCPIE6652755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.335403, - 45.169464 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac | N10, Aire de Bedenac Est", - "ref": "FRIONE43235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.146781, - 43.867189 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U COUST BORNE CLIENT", - "ref": "FRCPIE6558885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.028962, - 49.252337 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Cathédrale 2 - 7676 place 1151", - "ref": "FRE10E767", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.028962, - 49.252337 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Cathédrale 2 - 7676 place 1151", - "ref": "FRE10E767", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.028962, - 49.252337 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Cathédrale 2 - 7676 place 1151", - "ref": "FRE10E767", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.028962, - 49.252337 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Cathédrale 2 - 7676 place 1151", - "ref": "FRE10E767", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.335403, - 45.169464 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac | N10, Aire de Bedenac Est", - "ref": "FRIONE43235", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.335403, - 45.169464 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Bedenac | N10, Aire de Bedenac Est", - "ref": "FRIONE43235", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.335422, - 47.780896 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LORIENT", - "ref": "FRCPIE6646405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.358258, - 49.901528 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CGED AMIENS", - "ref": "FRCPIE6652755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.335422, - 47.780896 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LORIENT", - "ref": "FRCPIE6646405", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.693495, - 47.256705 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SORIGNY 2480 - Place Antoine de St Exupéry", - "ref": "FRS37E248", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.693495, - 47.256705 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "SORIGNY 2480 - Place Antoine de St Exupéry", - "ref": "FRS37E248", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.490806, - 43.451614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE 2", - "ref": "FRCPIE6609555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.490806, - 43.451614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE 2", - "ref": "FRCPIE6609555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.490806, - 43.451614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE 2", - "ref": "FRCPIE6557355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.490806, - 43.451614 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE HU BORNE 2", - "ref": "FRCPIE6557355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44011", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6729345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6729315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6729315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6531395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6531395", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.82574, - 48.10823 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARTIGNY - 3 avenue de la gare - 150325 - CCS", - "ref": "FRS88E15032", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.82574, - 48.10823 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "MARTIGNY - 3 avenue de la gare - 150325 - CCS", - "ref": "FRS88E15032", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78046, - 48.0684 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMARCHE - 162018 - CCS", - "ref": "FRS88E16202", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78046, - 48.0684 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LAMARCHE - 162018 - CCS", - "ref": "FRS88E16201", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6730725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6730725", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6730005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6730005", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6729345", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6729355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862462, - 43.987408 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 9", - "ref": "FRCPIE6729355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.252347, - 48.70712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PULNOY - PARKING ATELIER ARTISANAL - 186925", - "ref": "FRN54E18692", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45180", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.866943, - 47.024413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BEAUNE", - "ref": "FRCPIE6622335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.866943, - 47.024413 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BEAUNE", - "ref": "FRCPIE6622335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.252347, - 48.70712 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "PULNOY - PARKING ATELIER ARTISANAL - 186925", - "ref": "FRN54E18692", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44011", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862979, - 43.987237 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LE PONTET 13", - "ref": "FRCPIE6729285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6623895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6623885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6623885", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6534535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6534535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17560786, - 45.9148288 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Neulise", - "ref": "FRIENE004702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17560786, - 45.9148288 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Neulise", - "ref": "FRIENE004702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17560786, - 45.9148288 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Neulise", - "ref": "FRIENE004701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17560786, - 45.9148288 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Neulise", - "ref": "FRIENE004701", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0775, - 49.606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Mouzon 35483 - Rue du collége", - "ref": "FRS08E3548", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0775, - 49.606 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Mouzon 35483 - Rue du collége", - "ref": "FRS08E3548", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557875", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.966089, - 45.56295 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER GRANIER BORNE 5", - "ref": "FRCPIE6557865", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6623895", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6623905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.427526, - 48.093861 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONELOG CHÂTEAUBOURG 6", - "ref": "FRCPIE6623905", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8991, - 48.2494 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TAINTRUX - Rue de l'épine - 162386", - "ref": "FRS88E16238", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39821, - 43.440935 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BBA BORNE 2", - "ref": "FRCPIE6564835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39821, - 43.440935 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BBA BORNE 2", - "ref": "FRCPIE6564835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39821, - 43.440935 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BBA BORNE 2", - "ref": "FRCPIE6535705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39821, - 43.440935 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BBA BORNE 2", - "ref": "FRCPIE6535705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39821, - 43.440935 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BBA BORNE 2", - "ref": "FRCPIE6535375", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39821, - 43.440935 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SUPER U BBA BORNE 2", - "ref": "FRCPIE6535375", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8991, - 48.2494 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "TAINTRUX - Rue de l'épine - 162386", - "ref": "FRS88E16238", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.044664, - 48.087704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DARNEY - Rue Stanislas - 150303 - CCS", - "ref": "FRS88E15030", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE46940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.044664, - 48.087704 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "DARNEY - Rue Stanislas - 150303 - CCS", - "ref": "FRS88E15030", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE4694", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE46941", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE46941", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE46941", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE46940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.474615, - 43.298803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Agde", - "ref": "FRIONE46940", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE45181", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.033437, - 43.14877 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Chaberte", - "ref": "FRIONE4518", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6541085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6541085", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6541055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6541055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.389744, - 49.036656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHÂTEAU-THIERRY", - "ref": "FRCPIE6540995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.389744, - 49.036656 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT CHÂTEAU-THIERRY", - "ref": "FRCPIE6540995", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.485549, - 45.161604 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BRIVE", - "ref": "FRCPIE6725925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.485549, - 45.161604 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR BRIVE", - "ref": "FRCPIE6725925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.492422, - 45.188934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saugon Ouest", - "ref": "FRIONE4314", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.492422, - 45.188934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saugon Ouest", - "ref": "FRIONE43140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.492422, - 45.188934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saugon Ouest", - "ref": "FRIONE43140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.492422, - 45.188934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saugon Ouest", - "ref": "FRIONE43140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.492422, - 45.188934 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saugon Ouest", - "ref": "FRIONE43140", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.340441, - 49.769178 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIART - Place de la Mairie - 57724", - "ref": "FRS08E5772", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.340441, - 49.769178 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "LIART - Place de la Mairie - 57724", - "ref": "FRS08E5772", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.680823, - 47.820159 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U BORNE PUBLIQUE3", - "ref": "FRCPIE6540215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.680823, - 47.820159 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE U BORNE PUBLIQUE3", - "ref": "FRCPIE6540215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6627505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6627505", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6627515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16581, - 48.838141 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 2", - "ref": "FRCPIE6543455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44011", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44011", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053197, - 50.548681 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Seclin", - "ref": "FRIONE44010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16581, - 48.838141 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 2", - "ref": "FRCPIE6543455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.402838, - 43.551582 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOULOUSE 1 _", - "ref": "FRCPIE6542295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589812, - 48.777379 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 14", - "ref": "FRCPIE6627515", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.402838, - 43.551582 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED TOULOUSE 1 _", - "ref": "FRCPIE6542295", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.954685, - 49.428651 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BUZANCY - 57517 - Parking Proxi", - "ref": "FRS08E5751", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.954685, - 49.428651 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "BUZANCY - 57517 - Parking Proxi", - "ref": "FRS08E5751", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589698, - 48.776964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 11", - "ref": "FRCPIE6627535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589698, - 48.776964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 11", - "ref": "FRCPIE6627535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589698, - 48.776964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 11", - "ref": "FRCPIE6541555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.589698, - 48.776964 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "WAAT 4 CHENES 11", - "ref": "FRCPIE6541555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24461, - 46.99259 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St FLORENT SUR CHER - République - 113095", - "ref": "FRS18E11309", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24461, - 46.99259 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "St FLORENT SUR CHER - République - 113095", - "ref": "FRS18E11309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.752628, - 50.451251 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MONTREUIL", - "ref": "FRCPIE6577835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE4378", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16687293, - 49.63044664 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Carignan 35990 - Rue du Parc", - "ref": "FRS08E3599", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.044, - 49.6695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Douzy 35886 - Place Verte", - "ref": "FRS08E3588", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.044, - 49.6695 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Douzy 35886 - Place Verte", - "ref": "FRS08E3588", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41992, - 46.7149 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ORCENAIS - Route de Marçais - 112821", - "ref": "FRS18E11282", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41992, - 46.7149 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "ORCENAIS - Route de Marçais - 112821", - "ref": "FRS18E11282", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165492, - 48.83775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 1", - "ref": "FRCPIE6536955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165492, - 48.83775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 1", - "ref": "FRCPIE6536955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.118014, - 46.573538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vendée", - "ref": "FRIONE40970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986062, - 48.565925 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Longvilliers", - "ref": "FRIONE43780", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16687293, - 49.63044664 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@modulo-energies.fr", - "phone": "0800 37 37 40", - "network": "Carignan 35990 - Rue du Parc", - "ref": "FRS08E5741", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.118014, - 46.573538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vendée", - "ref": "FRIONE40970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.752628, - 50.451251 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED MONTREUIL", - "ref": "FRCPIE6577835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE4092", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.643851, - 48.556927 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "07910270", - "ref": "FRTNME07910270", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.197267, - 47.974493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Réserve", - "ref": "FRIONE4126", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.197267, - 47.974493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Réserve", - "ref": "FRIONE41260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.197267, - 47.974493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Réserve", - "ref": "FRIONE41260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.197267, - 47.974493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Réserve", - "ref": "FRIONE41260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.197267, - 47.974493 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "La Réserve", - "ref": "FRIONE41260", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.323697, - 43.72454 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "STATION U BORNE 1", - "ref": "FRCPIE6538095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE40920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.118014, - 46.573538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vendée", - "ref": "FRIONE40970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE40920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE40920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE40920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE40920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Langres Perrogney", - "ref": "FRIONE40920", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.118014, - 46.573538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vendée", - "ref": "FRIONE4097", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.118014, - 46.573538 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Vendée", - "ref": "FRIONE40970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.162406, - 43.421307 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNES U TECHNO BORNE 2", - "ref": "FRCPIE6544925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.21, - 48.12 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "58e96c29-ba02-4754-b0c4-98a4a1056975", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 14:00-18:00", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.487105, - 48.345345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Société Y", - "owner:ref:FR:SIREN": "130025265", - "email": "contact@societe-operateur.com", - "phone": "0111111111", - "network": "Réseau de recharge ABC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2020-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87, - 47.44 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LEGELEUX", - "owner:ref:FR:SIREN": "898168273", - "email": "legeleuxbenoit@gmail.com", - "phone": "0618687523", - "network": "LEGELEUX", - "ref": "75722f71-206a-42a3-a3ea-f74ed28659b1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.93, - 47.24 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "garage Henry herve", - "owner:ref:FR:SIREN": "898168273", - "email": "garage.henry25@orange.fr", - "phone": "0381590075", - "network": "eurorepar", - "ref": "bcc51ef9-4e1e-42e9-a6cf-67a98b589dce", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1781618, - 44.9177712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "CHATEAU RIPEAU", - "ref": "cbbbdfaf-503c-443a-aee0-62980999f77f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83, - 43.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "c5352ae8-5a8f-4917-99cb-ad795fd45e27", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.559237, - 45.087757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "410177661", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Bricomarché - Villard de lans- SARALAM", - "ref": "70565", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.559237, - 45.087757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "410177661", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Bricomarché - Villard de lans ", - "ref": "70564", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8043099, - 50.2817902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "RENAULT ARRAS", - "ref": "4a833f25-e205-440a-97ce-fc15705a921c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.670170199999, - 44.8539403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SA GLASTINT", - "ref": "6bbb97a5-bd3d-4d66-ba5d-25591e1bc39a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.62, - 43.67 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "6b682e0d-7227-4979-b08c-66740b2c7e61", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7363293, - 48.0578853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "344659941", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTOS SELECTION - Mazda Laval", - "ref": "64555", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7363293, - 48.0578853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "344659941", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTOS SELECTION - Mazda Laval", - "ref": "64556", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4019962, - 49.0376111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "529221210", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW", - "ref": "55849", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 09:00-19:00,Sun 09:00-18:00", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4019962, - 49.0376111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "529221210", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW", - "ref": "55848", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.78 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "917756819", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.93, - 47.87 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32, - 48.92 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "326765054", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35, - 43.28 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35, - 43.28 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6, - 43.43 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6, - 43.43 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.93, - 47.87 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68, - 44.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68, - 44.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "775657463", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "CSE-Central BDF", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2, - 48.91 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "813164282", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "Station Mattieu et Pauline", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2, - 48.91 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "813164282", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "Station Mattieu et Pauline", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32, - 48.92 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "326765054", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32, - 48.92 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "326765054", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5203551, - 44.821036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SAS HOTEL BORDEAUX FLOIRAC", - "ref": "e270d760-c439-4b2f-a380-dc52b4568f62", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.398171, - 46.698981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LMS Informatique", - "owner:ref:FR:SIREN": "482399896", - "email": "olivier@eqos.fr", - "network": "LMS Informatique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.398099, - 46.698999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LMS Informatique", - "owner:ref:FR:SIREN": "482399896", - "email": "olivier@eqos.fr", - "network": "LMS Informatique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.398099, - 46.698999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LMS Informatique", - "owner:ref:FR:SIREN": "482399896", - "email": "olivier@eqos.fr", - "network": "LMS Informatique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.398226, - 46.698967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LMS Informatique", - "owner:ref:FR:SIREN": "482399896", - "email": "olivier@eqos.fr", - "network": "LMS Informatique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.398171, - 46.698981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LMS Informatique", - "owner:ref:FR:SIREN": "482399896", - "email": "olivier@eqos.fr", - "network": "LMS Informatique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.398226, - 46.698967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LMS Informatique", - "owner:ref:FR:SIREN": "482399896", - "email": "olivier@eqos.fr", - "network": "LMS Informatique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4, - 43.79 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "867580d1-94f0-43af-a80e-bd0da75ee828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923926, - 50.277657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SCI CAP IMMO", - "ref": "d005bf55-220d-4301-93f0-5c7a657c1412", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.91, - 43.9 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "4f68bd40-89f2-4196-a124-574c808ee030", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2, - 43.77 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "4f3433e4-aeb8-4c48-9301-097b84cefc73", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.976324, - 49.091403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Royal Champagne", - "owner:ref:FR:SIREN": "444344469", - "email": "bruno.tailly@royalchampagne.com", - "phone": "0633221487", - "network": "Royal Champagne Hotel & Spa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.976324, - 49.091403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Royal Champagne", - "owner:ref:FR:SIREN": "444344469", - "email": "bruno.tailly@royalchampagne.com", - "phone": "0633221487", - "network": "Royal Champagne Hotel & Spa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.976324, - 49.091403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Royal Champagne", - "owner:ref:FR:SIREN": "444344469", - "email": "bruno.tailly@royalchampagne.com", - "phone": "0633221487", - "network": "Royal Champagne Hotel & Spa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.976324, - 49.091403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Royal Champagne", - "owner:ref:FR:SIREN": "444344469", - "email": "bruno.tailly@royalchampagne.com", - "phone": "0633221487", - "network": "Royal Champagne Hotel & Spa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.976324, - 49.091403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Royal Champagne", - "owner:ref:FR:SIREN": "444344469", - "email": "bruno.tailly@royalchampagne.com", - "phone": "0633221487", - "network": "Royal Champagne Hotel & Spa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3746, - 43.638003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HABT", - "owner:ref:FR:SIREN": "820235711", - "email": "charley.bohy@mycharmy.net", - "phone": "0689573165", - "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3746, - 43.638003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HABT", - "owner:ref:FR:SIREN": "820235711", - "email": "charley.bohy@mycharmy.net", - "phone": "0689573165", - "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3746, - 43.638003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HABT", - "owner:ref:FR:SIREN": "820235711", - "email": "charley.bohy@mycharmy.net", - "phone": "0689573165", - "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3746, - 43.638003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HABT", - "owner:ref:FR:SIREN": "820235711", - "email": "charley.bohy@mycharmy.net", - "phone": "0689573165", - "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4253467530332162, - 49.06520319135481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kallista BDR", - "owner:ref:FR:SIREN": "820491314", - "email": "exploitation@yaway-recharge.eu", - "phone": "+33 0 800 96 00 80", - "network": "YAWAY Recharge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4253467530332162, - 49.06520319135481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kallista BDR", - "owner:ref:FR:SIREN": "820491314", - "email": "exploitation@yaway-recharge.eu", - "phone": "+33 0 800 96 00 80", - "network": "YAWAY Recharge", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4253467530332162, - 49.06520319135481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kallista BDR", - "owner:ref:FR:SIREN": "820491314", - "email": "exploitation@yaway-recharge.eu", - "phone": "+33 0 800 96 00 80", - "network": "YAWAY Recharge", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4253467530332162, - 49.06520319135481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kallista BDR", - "owner:ref:FR:SIREN": "820491314", - "email": "exploitation@yaway-recharge.eu", - "phone": "+33 0 800 96 00 80", - "network": "YAWAY Recharge", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4253467530332162, - 49.06520319135481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kallista BDR", - "owner:ref:FR:SIREN": "820491314", - "email": "exploitation@yaway-recharge.eu", - "phone": "+33 0 800 96 00 80", - "network": "YAWAY Recharge", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58, - 48.89 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "834439630", - "email": "exploitation@freshmile.com", - "phone": "0368781435", - "network": "Réseau de recharge DOMAINE DES BUFFLONNES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.654599599999, - 44.8662562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "CIGIMMO", - "ref": "1354f666-b5b9-49ac-a55b-ccec09570c7d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37615, - 51.01408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "FENBAT", - "ref": "e2706c77-15bb-4ea5-a93f-9cdf65e6ee65", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.964415, - 49.058989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "529221210", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTO AVENIR RELAIS - MAGENTA - VW", - "ref": "55851", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.964415, - 49.058989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "529221210", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTO AVENIR RELAIS - MAGENTA - VW", - "ref": "55852", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7, - 43.36 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "JONNARD LES ISSAMBRES", - "owner:ref:FR:SIREN": "898168273", - "email": "jonnard.pierre@wanadoo.fr", - "phone": "0608740580", - "network": "JONNARD LES ISSAMBRES", - "ref": "9d89bd8b-419e-4124-bb00-3fa1a76feb52", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1165115, - 49.0227649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "392291167", - "email": "contact@secal-electricite.fr", - "phone": "0134201124", - "network": "SKYMAT", - "ref": "EVB-P1941339", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-fr 08:00-12:00,MO-FR14:00-18:00", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8872073, - 47.6485392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "388876997", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA DENNEY AUTOMOBILES", - "ref": "88247", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8872073, - 47.6485392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "388876997", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA DENNEY AUTOMOBILES", - "ref": "88248", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.980447, - 49.108413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PHARMACIE DE HUNDLING", - "owner:ref:FR:SIREN": "813675287", - "email": "pharmacie.de.hundling@gmail.com", - "phone": "0387025097", - "network": "PHARMACIE DE HUNDLING", - "ref": "8eb9f23b-54a1-43d8-ad0f-7ed4dd2e1c67", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-17:00", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.071825, - 48.432196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342913449", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GARAGE DE BRETAGNE - MAZDA ALENÇON", - "ref": "49545", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66609, - 48.75567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "KIEHL", - "owner:ref:FR:SIREN": "390454155", - "email": "contact@kiehl.fr", - "phone": "0388595225", - "network": "KIEHL France", - "ref": "2defe8a4-408d-4886-a110-6d1a3918ca16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2081186, - 50.1621653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "405267402", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "PMD AUTOMOBILES", - "ref": "47259", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2081186, - 50.1621653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "405267402", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "PMD AUTOMOBILES", - "ref": "127535", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51178345, - 47.48421863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "313643108", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Super U - Saint Barthelemy d'Anjou", - "ref": "65281", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51178345, - 47.48421863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "313643108", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Super U - Saint Barthelemy d'Anjou", - "ref": "65280", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54, - 48.04 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "917220985", - "operator": "GROFF SAS", - "email": "francoise.groff@deux-clefs.com", - "phone": "0389303060", - "network": "Hostellerie aux deux cléfs", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0766169, - 48.8869587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "423313014", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda Macon - ACT AUTOMOBILES ", - "ref": "95769", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1984829, - 44.6656545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Masseria", - "owner:ref:FR:SIREN": "877614388", - "email": "sas.masseria@gmail.com", - "phone": "0680338905", - "network": "Charge banarge", - "ref": "ceec7d44-ba61-11ec-8422-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18225850129804153, - 44.677126551459914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Hostellerie", - "owner:ref:FR:SIREN": "317782282", - "email": "hostellerie.des.ducs@wanadoo.fr", - "phone": "0553837458", - "network": "Charge parking", - "ref": "1ce943d0-0fe2-11ed-861d-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.046409, - 46.020022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "313283707", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda ROANNE", - "ref": "50713", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-18:00; Sa:09:00-19:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.046409, - 46.020022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "313283707", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda ROANNE", - "ref": "50663", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-18:00; Sa:09:00-19:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.31, - 44.51 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "d8b8f34d-6d12-4830-be62-566a5e50a3b7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99, - 44.08 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "a0052293-b341-4373-bb92-86c5949562f8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4307718, - 43.4535293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "e6c1f396-0451-4d51-8190-96321d815134", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.48, - 44.49 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "3d958256-e732-4060-8f85-b8782bb660c3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5269, - 44.5888 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "853947687", - "email": "direction@camping-les-arches.com", - "phone": "0475367519", - "network": "ChargePoint", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.598465, - 46.047794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "430357152", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mercedes Benz - Cluses EMB74", - "ref": "35329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.598465, - 46.047794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "430357152", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mercedes Benz - Cluses EMB74", - "ref": "35328", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430464, - 46.708982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "539245803", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON ", - "ref": "131652", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430464, - 46.708982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "539245803", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON", - "ref": "131655", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3688759, - 49.1825257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "379070832", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA VERDUN -JM AUTOMOBILES", - "ref": "50737", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1352017, - 49.3591525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "390389344", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda THIONVILLE - AZUR MOTORS", - "ref": "50659", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.676455, - 48.478447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "517502365", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Kia Yffiniac - AUTO DESIGN", - "ref": "50451", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.676455, - 48.478447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "517502365", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Kia Yffiniac - AUTO DESIGN", - "ref": "50452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5024568, - 48.9874447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "348753575", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Courtisols", - "ref": "131601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5024568, - 48.9874447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "348753575", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Courtisols ", - "ref": "77565", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5024568, - 48.9874447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "348753575", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Courtisols ", - "ref": "77564", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5024568, - 48.9874447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "348753575", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Courtisols", - "ref": "131600", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0766169, - 48.8869587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "379198443", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA MAREIL MARLY - TECHNIC AUTO SERVICES", - "ref": "57516", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-19:00", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4149303, - 47.1112893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "812806461", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Bourges", - "ref": "49606", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.804283, - 48.796153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "309623783", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda HAGUENAU -GARAGE DU MOULIN", - "ref": "50721", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-17:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.804283, - 48.796153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "309623783", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda HAGUENAU -GARAGE DU MOULIN", - "ref": "50722", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-17:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.371309, - 48.159583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Modulo", - "owner:ref:FR:SIREN": "256802745", - "email": "jferchaud@modulo-energies.fr", - "phone": "0247316868", - "network": "Modulo", - "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1012758, - 47.8108275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Modulo", - "owner:ref:FR:SIREN": "256802745", - "email": "jferchaud@modulo-energies.fr", - "phone": "0247316868", - "network": "Modulo", - "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1444077, - 47.7402178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Modulo", - "owner:ref:FR:SIREN": "256802745", - "email": "jferchaud@modulo-energies.fr", - "phone": "0247316868", - "network": "Modulo", - "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0, - 0 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "686850223", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Peugeot NOMBLOT ", - "ref": "142950", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-18:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0, - 0 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "686850223", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NOMBLOT VILLEFRANCHE", - "ref": "142953", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:00-18:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0, - 0 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "686850223", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NOMBLOT VILLEFRANCHE", - "ref": "142947", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-18:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0, - 0 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "686850223", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NOMBLOT VILLEFRANCHE", - "ref": "142948", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-18:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0996823, - 44.5662689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317898492", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota GAP- AUTO DAUPHINE", - "ref": "55103", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0996823, - 44.5662689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317898492", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota GAP- AUTO DAUPHINE", - "ref": "125090", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0996823, - 44.5662689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317898492", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota GAP- AUTO DAUPHINE", - "ref": "125091", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0996823, - 44.5662689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317898492", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota GAP- AUTO DAUPHINE", - "ref": "55104", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8675419, - 46.7680197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "391060480", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA Chalon sur Saone - ZENITH MOTORS", - "ref": "126576", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-19:00", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8675419, - 46.7680197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "391060480", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA Chalon sur Saone - ZENITH MOTORS", - "ref": "126575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-19:00", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02, - 50.61 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "0320075634", - "network": "RME Loos (FR-FR1) ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02, - 50.61 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "0320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02, - 50.61 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "0320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45, - 45.86 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHATEAU DE RONZIERE", - "owner:ref:FR:SIREN": "898168273", - "email": "jonnard.pierre@wanadoo.fr", - "phone": "0608740580", - "network": "CHATEAU DE RONZIERE", - "ref": "225f248f-83e1-4ecd-898a-705d94eb7208", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9592363524417444, - 45.048291304036994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "434543864", - "email": "maximilien.kauffmann@wallbox.com", - "phone": "0694 495 065", - "network": "Armstrong France", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9811023182169172, - 43.426421561643096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "freshmile", - "owner:ref:FR:SIREN": "213105554", - "email": "exploitation@freshmile.com", - "phone": "0369246738", - "network": "Mairie Vaudreuille", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4808844929161726, - 43.6137170539075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "330187931", - "email": "maximilien.kauffmann@wallbox.com", - "phone": "0694 495 065", - "network": "Ligue Occitanie Basketball", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.639024184472166, - 41.90917768392654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "freshmile", - "owner:ref:FR:SIREN": "418415642", - "email": "exploitation@freshmile.com", - "phone": "0369246738", - "network": "résidence Dolce Vita", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67, - 48.52 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "802241182", - "email": "info@compinglabelleetoile.com", - "phone": "608862318", - "network": "Camping la Belle Etoile", - "ref": "277fec15-9af5-4f6b-b791-8f0a0b536ae2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.44, - 48.21 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "aad5992e-ec2a-488b-95f6-47523dc8ed89", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69, - 43.46 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "3b08bff7-e3d0-4c9a-b1d8-6c6b8a55e874", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014273, - 50.615449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1) ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014273, - 50.615449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014273, - 50.615449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.63357, - 48.81823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LA PRAIRIE", - "owner:ref:FR:SIREN": "444533103", - "email": "nadine.thal@secal.fr", - "phone": "0684262686", - "network": "LA PRAIRIE", - "ref": "f8f2a346-5d38-4564-8b12-ed6b28fd2c1b", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2858373, - 48.2050603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "440793552", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA SENS", - "ref": "63713", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2858373, - 48.2050603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "440793552", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA SENS ", - "ref": "63712", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3664798, - 48.0956304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "402343842", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Colmar", - "ref": "49702", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9811023182169172, - 43.426421561643096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "213105554", - "email": "maximilien.kauffmann@wallbox.com", - "phone": "0694 495 065", - "network": "Mairie Vaudreuille", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.615871, - 48.816567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Metz", - "ref": "48423", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.615871, - 48.816567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Metz", - "ref": "48422", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.615871, - 48.816567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Metz", - "ref": "64646", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": " Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.615871, - 48.816567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Metz", - "ref": "64645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33756327, - 47.77843796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "391581451", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "FORD LORIENT", - "ref": "80464", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33756327, - 47.77843796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "391581451", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "FORD LORIENT", - "ref": "80465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4936366, - 43.2910961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "451609978", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SNS SOLUTIONS MARSEILLE", - "ref": "128989", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.763026, - 41.947088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "323838110", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AJACCIO NORD AUTOMOBILES - MAZDA AJACCIO ", - "ref": "59911", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6151818, - 48.8161972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "349214825", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA PERIGUEUX", - "ref": "50784", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.009613, - 50.617509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.009613, - 50.617509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1) ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.009613, - 50.617509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.854015, - 49.49181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQ91ECZ6OH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95344, - 49.1574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNSVNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97103979, - 49.53518707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWJ35E2BFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97103979, - 49.53518707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWJ35E2BFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8454, - 49.4408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "clairoix", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.854015, - 49.49181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQ91ECZ6OH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8454, - 49.4408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "clairoix", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95344, - 49.1574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNSVNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64507, - 49.4259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAQLQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64507, - 49.4259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAQLQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86353, - 49.4637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCMPVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83789452, - 49.57962857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQFMMRWHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58226, - 49.2589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUHPQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88124, - 49.4777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFWJEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45262, - 49.376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJKQVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86353, - 49.4637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCMPVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64299, - 49.4292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ERHZAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05025, - 49.6555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFKUJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50962, - 49.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMBKVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95433, - 49.5433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYTRGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83884, - 49.5876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPKDFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77651, - 49.3866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCFAXA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77630573, - 49.52149139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAKCAJ6OZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58555, - 49.5608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZHDPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.691131, - 45.758969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYXQ9TJ10X4F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.691131, - 45.758969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYXQ9TJ10X4F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.691131, - 45.758969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYXQ9TJ10X4F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45262, - 49.376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJKQVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27616, - 49.14952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVP217VGA5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27616, - 49.14952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVP217VGA5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74747, - 49.5406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSPQBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83884, - 49.5876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPKDFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58555, - 49.5608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZHDPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90553, - 49.3464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYSSRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74747, - 49.5406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSPQBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83789452, - 49.57962857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQFMMRWHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77651, - 49.3866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCFAXA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90553, - 49.3464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYSSRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52149, - 49.5537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRWCTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52149, - 49.5537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRWCTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78571, - 49.3543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNEUNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78571, - 49.3543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNEUNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77630573, - 49.52149139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAKCAJ6OZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50962, - 49.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMBKVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08822, - 49.1075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YRFTXHDZQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92897, - 49.0529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSDAFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04137, - 49.0929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMWS019EB5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08275, - 49.1181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXH8KMZAIL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96526, - 49.0118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMMYUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04492, - 49.0435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2PBVFTJNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04137, - 49.0929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMWS019EB5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08213, - 49.1176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCZTSR0FDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07152, - 49.1048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJTHIBWDZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03067, - 49.0023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3Q7KKPBUP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08822, - 49.1075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YRFTXHDZQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04492, - 49.0435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2PBVFTJNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03343, - 49.06 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWOWXFTE8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03343, - 49.06 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWOWXFTE8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08213, - 49.1176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCZTSR0FDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07077, - 49.1102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLXN7QZI6H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09606, - 49.1007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WLYDJRRTX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03067, - 49.0023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3Q7KKPBUP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08275, - 49.1181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXH8KMZAIL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96526, - 49.0118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMMYUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93729, - 49.0376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJENBZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01936, - 48.8498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "fenetrpark", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05582, - 48.7341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrepide", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.11605, - 48.6709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CHPBCT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04749, - 48.719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrbcovoit", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06471, - 49.1104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCKKXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93729, - 49.0376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJENBZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06471, - 49.1104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCKKXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07077, - 49.1102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLXN7QZI6H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92897, - 49.0529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSDAFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00797, - 49.0743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FDDVWW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.02753, - 48.9976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVUDTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06484, - 49.1129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXCRHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06484, - 49.1129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXCRHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00797, - 49.0743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FDDVWW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09606, - 49.1007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WLYDJRRTX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.02753, - 48.9976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVUDTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07152, - 49.1048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJTHIBWDZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75706931, - 45.16480908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUQVEPZ8AW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.691131, - 45.758969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYXQ9TJ10X4F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36122, - 48.9579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Semchahmd", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2535821, - 43.34597207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXBHNZDQGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2535821, - 43.34597207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXBHNZDQGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2535821, - 43.34597207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXBHNZDQGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2535821, - 43.34597207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXBHNZDQGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77214118, - 49.35462135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPYWW8B6QN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:00,Fr 07:00-16:00", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77214118, - 49.35462135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPYWW8B6QN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:00,Fr 07:00-16:00", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33924538, - 48.95442304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESOO1VY323", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36122, - 48.9579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Semchahmd", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11471684, - 49.11512365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZPNJOORZL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36122, - 48.9579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Semchahmd", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33924538, - 48.95442304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESOO1VY323", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36122, - 48.9579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Semchahmd", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.352533, - 48.973217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQFB82S3YL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.352533, - 48.973217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQFB82S3YL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.352533, - 48.973217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQFB82S3YL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.352533, - 48.973217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQFB82S3YL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11662159, - 49.1137168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3YZBNLWII", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113817, - 49.113535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QZFN3KUU9F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75706931, - 45.16480908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUQVEPZ8AW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72547177, - 48.66115458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WAHN3XCBEO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.435594, - 46.351146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2NLTYQ2Z5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.435594, - 46.351146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2NLTYQ2Z5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.435594, - 46.351146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2NLTYQ2Z5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.435594, - 46.351146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2NLTYQ2Z5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.435594, - 46.351146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2NLTYQ2Z5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.435594, - 46.351146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2NLTYQ2Z5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72547177, - 48.66115458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WAHN3XCBEO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12032366, - 48.67408039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RETLG65TD9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12215775, - 49.10941874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MVI0NG2BIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12032366, - 48.67408039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RETLG65TD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.625849, - 47.562551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D7MMXLNJZN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.625849, - 47.562551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D7MMXLNJZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113817, - 49.113535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QZFN3KUU9F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12215775, - 49.10941874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MVI0NG2BIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11662159, - 49.1137168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3YZBNLWII", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11471684, - 49.11512365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZPNJOORZL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88124, - 49.4777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFWJEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.240314, - 45.59161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESNTDAUVON", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58226, - 49.2589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUHPQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6346, - -20.9288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Speedyreusuz", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074826, - 49.114495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFJKXAUZJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59244163, - 43.06237424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OGOEOW5UKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59244163, - 43.06237424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OGOEOW5UKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9670507, - 46.10233755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RB8VUBDF3E", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9670507, - 46.10233755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RB8VUBDF3E", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65466, - 48.8443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QZTHJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65466, - 48.8443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QZTHJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84818957, - 45.71411313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FXARSCAO92", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84818957, - 45.71411313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FXARSCAO92", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84818957, - 45.71411313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FXARSCAO92", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83675553, - 43.83706131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCF3ZP09ZM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83675553, - 43.83706131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCF3ZP09ZM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83675553, - 43.83706131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCF3ZP09ZM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074826, - 49.114495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFJKXAUZJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6346, - -20.9288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Speedyreusuz", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08563248, - 49.91905333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMNDERSS7U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90284255, - 50.42002379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJNXCMKMNM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46482086, - -20.8928222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMHWFA6XWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95892, - 43.30517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVLDH0AW95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95892, - 43.30517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVLDH0AW95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95892, - 43.30517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVLDH0AW95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95892, - 43.30517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVLDH0AW95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95892, - 43.30517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVLDH0AW95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95892, - 43.30517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVLDH0AW95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13106762, - 44.43558016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5YXGNA3QT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13106762, - 44.43558016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5YXGNA3QT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13106762, - 44.43558016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5YXGNA3QT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13106762, - 44.43558016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5YXGNA3QT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13106762, - 44.43558016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5YXGNA3QT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13106762, - 44.43558016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5YXGNA3QT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.315211, - 46.61455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWNJODKKG1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.315211, - 46.61455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWNJODKKG1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09795, - 46.0745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGREFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23131, - 47.8882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REGTQN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23131, - 47.8882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REGTQN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23984, - 47.9611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFCMGC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23984, - 47.9611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFCMGC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90284255, - 50.42002379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJNXCMKMNM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90284255, - 50.42002379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJNXCMKMNM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08563248, - 49.91905333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMNDERSS7U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08563248, - 49.91905333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMNDERSS7U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95433, - 49.5433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYTRGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09615459, - 44.13769312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDO26AVCKK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39631194, - 45.25527961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KD6VCY4UHY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5681025, - 16.24180386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNCC1SH0T1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.240314, - 45.59161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESNTDAUVON", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698357, - 43.444467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMEDAZRPPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.240314, - 45.59161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESNTDAUVON", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.240314, - 45.59161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESNTDAUVON", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35787921, - 49.11970351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNEHR4REYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35787921, - 49.11970351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNEHR4REYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35787921, - 49.11970351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNEHR4REYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35787921, - 49.11970351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNEHR4REYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26296, - 50.1938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDSBUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26296, - 50.1938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDSBUE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8008, - 49.2982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECFJGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69736, - 49.3215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NOGCX5IK1U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88313, - 49.4799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYTBZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64299, - 49.4292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ERHZAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87829, - 49.438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "choisyaubaclec", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8008, - 49.2982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECFJGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.71831, - 49.3573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQBMXR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.71831, - 49.3573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQBMXR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05025, - 49.6555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFKUJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5354, - 49.3047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJJSHD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88313, - 49.4799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYTBZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5354, - 49.3047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJJSHD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87829, - 49.438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "choisyaubaclec", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64194, - 49.2995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCMJCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64194, - 49.2995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCMJCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39631194, - 45.25527961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KD6VCY4UHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856848, - 45.505937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOKSVEUQOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08563248, - 49.91905333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMNDERSS7U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856848, - 45.505937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOKSVEUQOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08563248, - 49.91905333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMNDERSS7U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08563248, - 49.91905333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMNDERSS7U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03399435, - 42.78322046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYWC7E3K5E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03399435, - 42.78322046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYWC7E3K5E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.11605, - 48.6709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CHPBCT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11762293, - 45.89946517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWIOS76HPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11762293, - 45.89946517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWIOS76HPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.527067, - 43.171142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXCAUXDWQZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.527067, - 43.171142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXCAUXDWQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.527067, - 43.171142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXCAUXDWQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.527067, - 43.171142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXCAUXDWQZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01936, - 48.8498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "fenetrpark", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05582, - 48.7341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrepide", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04512836, - 49.11464708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T7NT4TEAJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2107, - 45.8393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPMKO0KCT6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2107, - 45.8393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPMKO0KCT6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2107, - 45.8393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPMKO0KCT6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2107, - 45.8393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPMKO0KCT6", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89764358, - 48.08101062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKZIHSYQXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260456, - 47.956663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3EMVP93X7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260456, - 47.956663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3EMVP93X7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508629, - 46.00356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDMC6YBZXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508629, - 46.00356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDMC6YBZXB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04512836, - 49.11464708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T7NT4TEAJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04512836, - 49.11464708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T7NT4TEAJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04512836, - 49.11464708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T7NT4TEAJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37956223, - 49.24620227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQCDH9J1JP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-23:00,Sa-Su 08:00-23:00", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.258089, - 48.436511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AC2FNB43AS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.258089, - 48.436511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AC2FNB43AS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54018, - 48.3396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPIJ5SALHF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54018, - 48.3396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPIJ5SALHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.258675, - 49.508633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACRYNFDCV8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78942227, - 50.27924346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYAHQAUM1C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78942227, - 50.27924346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYAHQAUM1C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60349443, - 50.56336763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1GNC8FCNX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60349443, - 50.56336763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1GNC8FCNX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.678525, - 48.747559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXJ72OM8NT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.678525, - 48.747559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXJ72OM8NT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.603303, - 48.128755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VF5EU1QLKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37956223, - 49.24620227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQCDH9J1JP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-23:00,Sa-Su 08:00-23:00", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32366, - 46.5526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVPIZQYZVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 09:00-17:00,Tu-Fr 09:00-19:00,Sa 09:00-18:00", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.216214, - 48.689763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK174HG81PAI5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.50990428, - 43.55204124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QL0SAGXFVN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.50990428, - 43.55204124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QL0SAGXFVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.50990428, - 43.55204124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QL0SAGXFVN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.642383, - 49.651056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZ79ENR8ZB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0887877, - 44.1063329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6VGAWB4RJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0887877, - 44.1063329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6VGAWB4RJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0887877, - 44.1063329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6VGAWB4RJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.052203, - 48.271031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQG36TGCXO", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.216214, - 48.689763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK174HG81PAI5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.216214, - 48.689763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK174HG81PAI5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.216214, - 48.689763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK174HG81PAI5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.216214, - 48.689763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK174HG81PAI5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.216214, - 48.689763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK174HG81PAI5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072434, - 49.447921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LL76TVKIP4", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.072434, - 49.447921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LL76TVKIP4", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65487, - 49.57855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVGRRYJMAI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65487, - 49.57855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVGRRYJMAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94978, - 47.2137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEAFCWDTLI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87468, - 48.082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJ10TZEAZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87468, - 48.082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJ10TZEAZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.134913, - 49.35392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4TFFCDH2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30075, - 49.0047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTWHHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30075, - 49.0047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTWHHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05840231, - 49.0471033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RM0ROAPILM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05840231, - 49.0471033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RM0ROAPILM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05923348, - 49.05647267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHOGICTC4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05923348, - 49.05647267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHOGICTC4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377849, - 48.681423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377849, - 48.681423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377849, - 48.681423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.134913, - 49.35392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4TFFCDH2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02513243, - 46.87560944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UG3WVGHZF7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02513243, - 46.87560944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UG3WVGHZF7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.452093, - 48.417253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZ543QKP9R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.452093, - 48.417253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZ543QKP9R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.452093, - 48.417253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZ543QKP9R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896488, - 43.906685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3MM8AGQ9C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896488, - 43.906685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3MM8AGQ9C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896488, - 43.906685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3MM8AGQ9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896488, - 43.906685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3MM8AGQ9C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57130327, - 50.41575798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSPSTZ6J2B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856136, - 44.9478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRMTMC6S3N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856136, - 44.9478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRMTMC6S3N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856136, - 44.9478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRMTMC6S3N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856136, - 44.9478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRMTMC6S3N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10338269, - 49.07656605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PX3HCA6K3H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10338269, - 49.07656605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PX3HCA6K3H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.479675, - 46.757135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOK4NQXJLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05011091, - 48.71954046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GL45JADQ7A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05011091, - 48.71954046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GL45JADQ7A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936072, - 50.334399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWAX2VIBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936072, - 50.334399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWAX2VIBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936072, - 50.334399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWAX2VIBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936072, - 50.334399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWAX2VIBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64588345, - 48.92970706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXR4EPVUDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85226899, - 44.93490781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVUPC3TPJ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856194, - 44.948029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U335H3JLYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.856194, - 44.948029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U335H3JLYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85226899, - 44.93490781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVUPC3TPJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.851934, - 44.934925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVUPC3TPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.851934, - 44.934925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVUPC3TPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.50990428, - 43.55204124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QL0SAGXFVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32366, - 46.5526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVPIZQYZVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 09:00-17:00,Tu-Fr 09:00-19:00,Sa 09:00-18:00", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96478, - 48.6927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMSBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.624337, - 48.060483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBKLIDJFMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.161801, - 47.898629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRJ1YQKCPS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.161801, - 47.898629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRJ1YQKCPS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.004, - 49.0518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBLAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.004, - 49.0518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBLAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04512, - 47.2309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKM6A0PYWP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04512, - 47.2309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKM6A0PYWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.916137, - 43.606863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFRXEAP6WP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.916137, - 43.606863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFRXEAP6WP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.624337, - 48.060483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBKLIDJFMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.624337, - 48.060483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBKLIDJFMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.624337, - 48.060483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBKLIDJFMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.073204, - 49.10163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRH9XRGS4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.161801, - 47.898629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRJ1YQKCPS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.073204, - 49.10163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRH9XRGS4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.073204, - 49.10163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRH9XRGS4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.073204, - 49.10163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRH9XRGS4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498943, - 47.269888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRBRGD5HQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.161801, - 47.898629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRJ1YQKCPS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.62645, - 48.545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSFMSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.320415, - 46.581404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REUFMB3JUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8814761, - 48.9103995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ1TNK1LIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0711867, - 47.6413375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y168YXLDGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9398107, - 47.5152884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPRVLAFTZW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73299658, - 47.99722361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWQDW4NOVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64666767, - 47.74408337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCI92NVVNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59902024, - 47.73803183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2TOJUBYT5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73299658, - 47.99722361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWQDW4NOVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0711867, - 47.6413375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y168YXLDGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53779346, - 47.74316892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCFU7VLMR8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64666767, - 47.74408337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCI92NVVNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8814761, - 48.9103995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ1TNK1LIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8814761, - 48.9103995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ1TNK1LIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8814761, - 48.9103995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ1TNK1LIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.62645, - 48.545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSFMSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8814761, - 48.9103995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ1TNK1LIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8814761, - 48.9103995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ1TNK1LIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92307884, - 45.71597843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ3Z2AGU2555D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92307884, - 45.71597843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ3Z2AGU2555D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92307884, - 45.71597843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ3Z2AGU2555D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92307884, - 45.71597843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ3Z2AGU2555D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92307884, - 45.71597843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ3Z2AGU2555D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92307884, - 45.71597843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ3Z2AGU2555D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61761, - 48.5401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMMADKASZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.62645, - 48.545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSFMSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.62645, - 48.545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSFMSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.56561, - 47.8026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PXTTGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.56509, - 47.7927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZMEWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57738, - 47.7986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQVZYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.56509, - 47.7927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZMEWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57738, - 47.7986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQVZYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57466, - 47.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSSQHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57466, - 47.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSSQHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.56561, - 47.8026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PXTTGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55363, - 47.8043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFNNSM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55363, - 47.8043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFNNSM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0881124, - 47.62961024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B61GBWQAVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.320415, - 46.581404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REUFMB3JUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.320415, - 46.581404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REUFMB3JUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.320415, - 46.581404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REUFMB3JUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.320415, - 46.581404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REUFMB3JUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.320415, - 46.581404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REUFMB3JUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81052113, - 43.94793351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2DDRJSDVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80886886, - 43.94223997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGQMYEHSNO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80583629, - 43.952648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFER1CVNZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57130327, - 50.41575798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSPSTZ6J2B", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71965817, - 48.63519881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THY3EJOYI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71965817, - 48.63519881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THY3EJOYI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.556566, - 47.591037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGQUEN557E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.582926, - 47.591991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UQMWXP1LTB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49751204, - 47.66949847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCFNXIKPD8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5338922, - 47.637421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCM19NLBYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.583157, - 47.589907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAWFK13ZEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.509913, - 47.559339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKJ7SGGVME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.585879, - 47.591719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O957ZEQDER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.565505, - 47.586385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJ3GBZ3PFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.460502, - 47.648974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMXCWSBMV3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.588663, - 47.601045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNGMRSFWLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.487105, - 47.634955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VW40LGQ14C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.561453, - 47.590898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVTKW80MWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56071, - 47.586884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0ZK51ZAHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56071, - 47.586884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0ZK51ZAHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.521945, - 47.575432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBLCLSJ4PF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.509913, - 47.559339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKJ7SGGVME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.527033, - 47.561586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTUP5OVAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.527033, - 47.561586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTUP5OVAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.460502, - 47.648974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMXCWSBMV3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19557, - 43.573451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJNUX7EA3X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.09035865, - 45.03417647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CY1SUZNSHO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75110754, - 49.0355117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V38WQLOKLK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96797, - 48.2822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWRJVV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95026, - 48.2851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSYZPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96797, - 48.2822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWRJVV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94854, - 48.288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAJKQ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95026, - 48.2851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSYZPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94854, - 48.288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAJKQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94854, - 48.288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAJKQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61108, - 48.0207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYMTCVEZGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61108, - 48.0207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYMTCVEZGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95608, - 45.0524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRWPFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.09035865, - 45.03417647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CY1SUZNSHO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.521945, - 47.575432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBLCLSJ4PF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.28325956, - 45.07409411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMXWMFSZZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49739994, - 47.66957673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCFNXIKPD8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.588663, - 47.601045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNGMRSFWLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5338922, - 47.637421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCM19NLBYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.487105, - 47.634955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VW40LGQ14C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.585879, - 47.591719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O957ZEQDER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.582926, - 47.591991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UQMWXP1LTB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.583157, - 47.589907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAWFK13ZEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.556566, - 47.591037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGQUEN557E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.561453, - 47.590898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVTKW80MWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.565505, - 47.586385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJ3GBZ3PFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5540214, - 47.590753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWK3GA2LBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94496, - 48.2156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJUUZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0921, - 48.6382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SNGFSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04263, - 48.7223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RULGFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95799, - 48.7563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJLMPN", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05345, - 48.7357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrbcord", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09613, - 48.743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "redinggare", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80403, - 48.6874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBWVSQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95799, - 48.7563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJLMPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06064, - 48.7339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrbcinestar", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09613, - 48.743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "redinggare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.10259, - 48.7109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLNZYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80403, - 48.6874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBWVSQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.10259, - 48.7109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLNZYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0921, - 48.6382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SNGFSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94185, - 48.2166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENPRTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.15556, - 48.6916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVZBFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05301864, - 48.73824807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHPYPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05301864, - 48.73824807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHPYPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00442, - 48.6655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSZFYN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06064, - 48.7339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrbcinestar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.15556, - 48.6916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVZBFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04263, - 48.7223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RULGFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05582, - 48.7341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrepide", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05582, - 48.7341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrepide", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12927, - 48.6767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SQMVNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96478, - 48.6927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMSBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12927, - 48.6767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SQMVNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05345, - 48.7357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrbcord", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00442, - 48.6655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSZFYN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04749, - 48.719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "sarrbcovoit", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94496, - 48.2156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJUUZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94185, - 48.2166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENPRTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65143, - 46.7855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXSQQA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", - "start_date": "2018-06-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65143, - 46.7855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXSQQA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65143, - 46.7855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXSQQA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", - "start_date": "2018-06-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65143, - 46.7855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXSQQA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27727, - 48.6192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RACFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.41478498, - 46.89444002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQXOTO9RCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.41478498, - 46.89444002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQXOTO9RCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73546, - 48.5968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJAUUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73546, - 48.5968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJAUUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.453555, - 42.719918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCNPMZIP3X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.31865954, - 42.50669575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SFNDWUV1R9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.31865954, - 42.50669575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SFNDWUV1R9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.20069, - 42.477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEZTK8O7PQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.20069, - 42.477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEZTK8O7PQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75110754, - 49.0355117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V38WQLOKLK", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65478, - 49.1559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "porcelavold", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65478, - 49.1559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "porcelavold", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.128946, - 44.610044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYORKBPKU5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2023-01-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.128946, - 44.610044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYORKBPKU5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.128946, - 44.610044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYORKBPKU5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.076645, - 43.231781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUFEKVP2OW7B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.076645, - 43.231781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUFEKVP2OW7B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41874822, - 43.66019118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THONXFPNYV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58571634, - 44.8623179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNGYVMGGN2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58571634, - 44.8623179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNGYVMGGN2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58571634, - 44.8623179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNGYVMGGN2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19557, - 43.573451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJNUX7EA3X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19557, - 43.573451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJNUX7EA3X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18462, - 48.8965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXPKNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18462, - 48.8965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXPKNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18462, - 48.8965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXPKNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.397154, - 43.348384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHQDPMTUSJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.397154, - 43.348384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHQDPMTUSJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.397154, - 43.348384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHQDPMTUSJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.397154, - 43.348384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHQDPMTUSJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33669653, - 43.80998863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZIBNJW6L9E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61389631, - 47.76883595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQHTLB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71117858, - 47.8386646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPVWBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.937185, - 47.23002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANFTOPYB1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.937185, - 47.23002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANFTOPYB1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6225, - 50.51542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O19SAEMHWV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6225, - 50.51542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O19SAEMHWV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6225, - 50.51542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O19SAEMHWV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402562, - 49.199265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESA4E2FUK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402562, - 49.199265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESA4E2FUK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38581, - 49.1471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHLEBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38581, - 49.1471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHLEBW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83561702, - 42.53316786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVL7ATPPWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9743661, - 47.27715089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ISHILDOGFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.67412, - 49.1776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "diesenchamps", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75110754, - 49.0355117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V38WQLOKLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.72042, - 49.0861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valmontgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69759, - 49.0829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valmontmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69759, - 49.0829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valmontmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68403, - 49.0758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "folschviller", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68403, - 49.0758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "folschviller", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.71039, - 49.1282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFSKEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68992, - 49.1435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYVULR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.704073, - 49.129777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSAKX7WKLW", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.704073, - 49.129777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSAKX7WKLW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68992, - 49.1435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYVULR", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68992, - 49.1435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYVULR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68992, - 49.1435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYVULR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688721, - 47.831799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVUO3G8E9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.71039, - 49.1282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFSKEP", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.71039, - 49.1282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFSKEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.704073, - 49.129777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSAKX7WKLW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.704073, - 49.129777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSAKX7WKLW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70929, - 49.1065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKTKBS", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73917, - 49.1605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lhopitalgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.71804, - 49.1669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "carlingfron", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73917, - 49.1605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lhopitalgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75110754, - 49.0355117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V38WQLOKLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.71804, - 49.1669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "carlingfron", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.67412, - 49.1776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "diesenchamps", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.72042, - 49.0861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valmontgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94082796, - 47.71970516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGPNLAOCAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73905, - 48.523048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8NDNATOEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73905, - 48.523048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8NDNATOEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.80023166, - 43.66688431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0HAPOBGP3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4044, - 43.2905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IEDDDF0Q0L", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89513, - 42.672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W10TRRJXGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89513, - 42.672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W10TRRJXGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07067616, - 47.84359733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEOGLXCZFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.149003, - 49.414058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P7ZEAJRSCL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.149003, - 49.414058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P7ZEAJRSCL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12840509, - 48.65873718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOGRMLSQTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12840509, - 48.65873718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOGRMLSQTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.680396, - 47.177474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YO82KYWPO8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.680396, - 47.177474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YO82KYWPO8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.680396, - 47.177474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YO82KYWPO8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.680396, - 47.177474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YO82KYWPO8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.478806, - 48.176019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJB1ZC4BR6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.478806, - 48.176019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJB1ZC4BR6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33287519, - 43.99147145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7EXT2CMXB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33287519, - 43.99147145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7EXT2CMXB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33287519, - 43.99147145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7EXT2CMXB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.996826, - 45.994531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJIGQX5EEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.996826, - 45.994531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJIGQX5EEN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.996826, - 45.994531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJIGQX5EEN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73905, - 48.523048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8NDNATOEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73905, - 48.523048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8NDNATOEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26102436, - 48.15970379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAGK3DXQNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33566, - 48.8517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGYDHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4192784, - 48.25690735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIW9RNHBFD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.589047, - 50.526286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAHLNICPOS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58715882, - 50.520311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBTVFCOXRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.595679, - 50.520015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P2SBBU9AIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58715882, - 50.520311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOA9IKAACX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.595679, - 50.520015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NW2L9MBAJT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.507444, - 47.608292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGKCHS3PHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33566, - 48.8517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGYDHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56499, - 44.8355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPDFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4014, - 48.27 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKI9GCZU29A8F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56499, - 44.8355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPDFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56499, - 44.8355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPDFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56499, - 44.8355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPDFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56499, - 44.8355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPDFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56499, - 44.8355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPDFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36746, - 43.3109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDC6ZL4PFH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36746, - 43.3109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDC6ZL4PFH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36746, - 43.3109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDC6ZL4PFH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4014, - 48.27 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKI9GCZU29A8F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4017, - 48.27 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPHWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064793, - 47.31288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJYET1MT29ZIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190163, - 49.066268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43988136, - 49.37899343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IPYVK0DJ6C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43988136, - 49.37899343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IPYVK0DJ6C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83972872, - 48.68005243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOB2XOCXWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83972872, - 48.68005243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOB2XOCXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83972872, - 48.68005243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOB2XOCXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83972872, - 48.68005243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOB2XOCXWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83972872, - 48.68005243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOB2XOCXWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83972872, - 48.68005243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOB2XOCXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190163, - 49.066268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4017, - 48.27 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPHWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190163, - 49.066268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190163, - 49.066268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190163, - 49.066268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190163, - 49.066268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22186, - 47.8647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKURJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22186, - 47.8647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKURJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.20602047, - 47.39066148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBDSF1GAWY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.20602047, - 47.39066148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBDSF1GAWY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36746, - 43.3109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDC6ZL4PFH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36746, - 43.3109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDC6ZL4PFH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36746, - 43.3109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDC6ZL4PFH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52746, - 48.0176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNDEBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32510201, - 46.17974498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FGZWXSCGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32510201, - 46.17974498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FGZWXSCGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.733194, - 47.719212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOMG7EKARS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.733194, - 47.719212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOMG7EKARS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.733194, - 47.719212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KOMG7EKARS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86947191, - 45.73266223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSIVEYPWFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86947191, - 45.73266223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSIVEYPWFI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52746, - 48.0176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNDEBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52842377, - 44.50620136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOXO36TF3N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33274, - 48.8785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EXBJBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.304028, - 47.877868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E8G5ELE480", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206953, - 47.87713109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMLUBIPCHF", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31188, - 47.8772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMLUBIPCHF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.304028, - 47.877868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E8G5ELE480", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206953, - 47.87713109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMLUBIPCHF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206953, - 47.87713109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMLUBIPCHF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06919251, - 47.31530824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJYEQ3G7O5R6V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06919251, - 47.31530824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJYEQ3G7O5R6V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32510201, - 46.17974498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FGZWXSCGAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32510201, - 46.17974498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FGZWXSCGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129841, - 45.7587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPGBBAKTHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129841, - 45.7587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPGBBAKTHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33274, - 48.8785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EXBJBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56999, - 44.841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGVNSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56999, - 44.841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHVKCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56999, - 44.841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGVNSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56999, - 44.841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHVKCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56999, - 44.841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHVKCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04132712, - 48.7846607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXQVXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04132712, - 48.7846607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXQVXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04132712, - 48.7846607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXQVXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.04132712, - 48.7846607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXQVXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9325, - 45.0932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMRSLVN3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9325, - 45.0932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMRSLVN3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9325, - 45.0932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMRSLVN3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9325, - 45.0932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMRSLVN3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98651939, - 49.19050326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XIXGQQFMOL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-16:00", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98651939, - 49.19050326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XIXGQQFMOL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-16:00", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98651939, - 49.19050326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XIXGQQFMOL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-16:00", - "start_date": "2020-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.925667, - 48.858492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KLBKXT19XL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.925667, - 48.858492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KLBKXT19XL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.925667, - 48.858492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KLBKXT19XL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6787, - -20.9961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "braspanon2002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.447557, - -20.883698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKSFD8QFSZ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.64261895, - -20.9385849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THLHDS2GGN", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.64261895, - -20.9385849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THLHDS2GGN", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3191, - -20.9499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "leportzac2000", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3261, - -20.9621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "possessjolizac", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.49691, - -20.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNMYXQ1FIG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5014, - -21.28043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2WYHZVZ7P", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.2237, - -21.0401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stgillestama", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.503491, - -21.257457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BMMQ9BPZYD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.49691, - -20.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNMYXQ1FIG", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.446, - -21.3213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pierrefondsrn", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6487, - -20.9511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "standreidf", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5675, - -20.8982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "saintemarien2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4701, - -20.8856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "steclotilde", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7171, - -21.0381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stbenoitjaures", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5675, - -20.8982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "saintemarien2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39025, - 42.544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d90daa7c461", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39025, - 42.544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d90daa7c461", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1106, - 49.3569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYFTYHFQUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1106, - 49.3569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYFTYHFQUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10489, - 49.3621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQZARA0WGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 04:00-22:30", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10489, - 49.3621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQZARA0WGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 04:00-22:30", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10489, - 49.3621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQZARA0WGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 04:00-22:30", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10489, - 49.3621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQZARA0WGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 04:00-22:30", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456722, - 43.321568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCTDVDU3YIRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7659, - -21.3598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stphilipreuni", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.257, - -21.0889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "salinetamarin", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.257, - -21.0889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "salinetamarin", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6423, - -20.9323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stpierrebois", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.925667, - 48.858492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KLBKXT19XL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.618406, - 50.514246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W31RKKRAWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.589047, - 50.526286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAHLNICPOS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.618406, - 50.514246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W31RKKRAWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58715882, - 50.520311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBTVFCOXRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4001, - -21.2831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stpierrelegol", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22362082, - 49.18942764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I09GDOR3YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58046484, - 50.52363179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOMGH1LYJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58046484, - 50.52363179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOMGH1LYJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57934, - 50.516639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLIGQ2PRQT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57934, - 50.516639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLIGQ2PRQT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89333, - 48.6713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATVPPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89333, - 48.6713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATVPPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88729, - 48.6753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUXQMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88729, - 48.6753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUXQMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.425368, - 43.64393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9MMBJJDP7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42556, - 43.64235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFJRFUKQ6R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42556, - 43.64235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFJRFUKQ6R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.425368, - 43.64393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9MMBJJDP7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42556, - 43.64235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFJRFUKQ6R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.425368, - 43.64393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9MMBJJDP7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.425368, - 43.64393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9MMBJJDP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42556, - 43.64235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFJRFUKQ6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.581165, - 50.52617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPB1IX5XMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.581165, - 50.52617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPB1IX5XMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.595679, - 50.520015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P2SBBU9AIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064793, - 47.31288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJYET1MT29ZIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55983046, - 50.58494308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJFJ2RMYHE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247558, - 43.365852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC4ZL3O1T1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247558, - 43.365852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC4ZL3O1T1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247558, - 43.365852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC4ZL3O1T1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247558, - 43.365852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC4ZL3O1T1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850875, - 43.95911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JARZHUSIDC", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11892, - 43.4146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPVJLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11892, - 43.4146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPVJLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25396, - 48.9351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25396, - 48.9351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25396, - 48.9351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55983046, - 50.58494308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJFJ2RMYHE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79375, - 48.5713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUCPGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79375, - 48.5713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUCPGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79375, - 48.5713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUCPGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79375, - 48.5713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUCPGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79375, - 48.5713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUCPGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51156, - 43.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCGVYIN2UP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5400952, - 47.44477797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQ35Y4FOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25396, - 48.9351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30351457, - 48.55595014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVYDUIQNKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30351457, - 48.55595014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVYDUIQNKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09001769, - 45.97806508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSUNAEBUPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.91072536, - 49.1841614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SK6TT9VRDT", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.88038297, - 49.18391946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQGFF4VUW8", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.903634, - 49.187323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LR65HDZA52", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92792894, - 49.20176712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWCQS9RKYQ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89472258, - 49.18574624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV8QSTYK6T", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80802051, - 45.92521533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNMYHDCGFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94087598, - 45.96136862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYZCB8ZTQ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09001769, - 45.97806508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSUNAEBUPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94087598, - 45.96136862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYZCB8ZTQ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48433048, - 48.82510663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6KEKD5OQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80802051, - 45.92521533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNMYHDCGFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94856318, - 45.96295378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCJTORNXPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94856318, - 45.96295378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCJTORNXPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.874431, - 47.778742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTVN6MH7ZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.016118, - 47.767776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENDRSP8NDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.782903, - 47.684238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GGAMYMHXPY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.782903, - 47.684238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GGAMYMHXPY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.022384, - 47.764535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXZOFYGKVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.904417, - 49.206235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3NWKI9IIG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89959369, - 49.18857569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFRZEV9L6M", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84535971, - 49.20795323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V38EOKLVWI", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.91072536, - 49.1841614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SK6TT9VRDT", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48075151, - 48.87181854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X42UOLEHM3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48075151, - 48.87181854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X42UOLEHM3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48075151, - 48.87181854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X42UOLEHM3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48219259, - 48.9214597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYI8NQIRWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48219259, - 48.9214597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYI8NQIRWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48075151, - 48.87181854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X42UOLEHM3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.27947071, - 48.81953672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3PBLADVLX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.27947071, - 48.81953672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3PBLADVLX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31883777, - 48.85661682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEJPQMNWKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48433048, - 48.82510663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6KEKD5OQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31883777, - 48.85661682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEJPQMNWKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03647947, - 49.0103569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWZBSK1GBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88027287, - 49.09737014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEECZ8DC9I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88027287, - 49.09737014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEECZ8DC9I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03647947, - 49.0103569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWZBSK1GBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927614, - 49.19944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLK89RD352FJRP", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93608326, - 49.1688363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F5SXUNWSSF", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4790376, - 50.38043065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTEHCGKCGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 13:30-18:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4790376, - 50.38043065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTEHCGKCGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 13:30-18:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4790376, - 50.38043065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTEHCGKCGX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 13:30-18:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4790376, - 50.38043065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTEHCGKCGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 13:30-18:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4790376, - 50.38043065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTEHCGKCGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 13:30-18:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.537, - 45.3234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41787466, - 48.25635664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDKATVG2EE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58031545, - 45.29836569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBLOVH1UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.28853, - 48.3369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZPSHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.28853, - 48.3369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZPSHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0463778, - 49.64518414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIDYA8RB2N", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0463778, - 49.64518414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIDYA8RB2N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67303924, - 44.83122754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOK49QJWD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67303924, - 44.83122754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOK49QJWD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67303924, - 44.83122754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOK49QJWD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67303924, - 44.83122754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOK49QJWD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67303924, - 44.83122754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOK49QJWD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67303924, - 44.83122754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOK49QJWD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014525, - 50.644677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BB7LOI4JNQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01449823, - 50.64439773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXIPG0APTF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01449823, - 50.64439773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXIPG0APTF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01449823, - 50.64439773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXIPG0APTF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132103, - 50.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SY2XSTFI1W", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132103, - 50.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SY2XSTFI1W", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132103, - 50.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SY2XSTFI1W", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132103, - 50.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SY2XSTFI1W", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132103, - 50.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SY2XSTFI1W", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132103, - 50.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SY2XSTFI1W", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0463778, - 49.64518414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIDYA8RB2N", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58357924, - 45.29923357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDHVUHHABK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41847685, - 48.25629235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CT0ATMJPPT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8014065, - 47.81158905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXD9XM3LXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80697, - 45.7829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "citysaone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80697, - 45.7829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "citysaone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80697, - 45.7829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "citysaone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80697, - 45.7829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "citysaone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8014065, - 47.81158905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXD9XM3LXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83956101, - 46.31490206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M5PDKFW3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8014065, - 47.81158905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXD9XM3LXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83956101, - 46.31490206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M5PDKFW3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41847685, - 48.25629235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CT0ATMJPPT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8014065, - 47.81158905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXD9XM3LXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83956101, - 46.31490206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M5PDKFW3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83956101, - 46.31490206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M5PDKFW3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29364943, - 47.74958132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWGJ3GU39PIK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29364943, - 47.74958132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWGJ3GU39PIK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52577599, - 43.8428697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E9D0SEHF8O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52577599, - 43.8428697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E9D0SEHF8O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889706, - 43.985588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQORNYNAFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41847685, - 48.25629235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CT0ATMJPPT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41847685, - 48.25629235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CT0ATMJPPT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4192784, - 48.25690735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIW9RNHBFD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41787466, - 48.25635664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDKATVG2EE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.31936, - 4.903192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5AB9NSGAH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.31936, - 4.903192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5AB9NSGAH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.475221, - -20.896466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OSU51U9FJZ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.475221, - -20.896466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OSU51U9FJZ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873812, - 47.021884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZSHZFIZDN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873812, - 47.021884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZSHZFIZDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873812, - 47.021884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZSHZFIZDN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873812, - 47.021884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZSHZFIZDN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873812, - 47.021884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZSHZFIZDN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873812, - 47.021884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZSHZFIZDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43663421, - 48.25024778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMQK6YW1HW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17805, - 45.6899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQPWPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93575, - 47.5493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLJKQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05962027, - 45.85201083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNTCPDQEGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59336481, - 45.17755777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYP7STRGYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59336481, - 45.17755777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYP7STRGYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59336481, - 45.17755777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYP7STRGYF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59336481, - 45.17755777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYP7STRGYF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69559, - 43.6418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEQHCV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69559, - 43.6418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEQHCV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05962027, - 45.85201083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNTCPDQEGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05962027, - 45.85201083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNTCPDQEGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05962027, - 45.85201083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNTCPDQEGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2638, - 43.6008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PXWENV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1849276, - 45.66470871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAHNNHQAL5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1849276, - 45.66470871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAHNNHQAL5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1849276, - 45.66470871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAHNNHQAL5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1849276, - 45.66470871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAHNNHQAL5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1849276, - 45.66470871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAHNNHQAL5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1849276, - 45.66470871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAHNNHQAL5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.377489, - 48.381631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGTKMH9RNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.377489, - 48.381631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGTKMH9RNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2638, - 43.6008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PXWENV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63326643, - 42.67651986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU4YLMRYYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15731791, - 49.31773016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBSMDYN6DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408285, - 48.436954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXVCIGXZXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408285, - 48.436954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXVCIGXZXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408285, - 48.436954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXVCIGXZXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408285, - 48.436954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXVCIGXZXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76347422, - 48.63041976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKQLCBJQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76347422, - 48.63041976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKQLCBJQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76347422, - 48.63041976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKQLCBJQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76347422, - 48.63041976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKQLCBJQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15731791, - 49.31773016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBSMDYN6DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63326643, - 42.67651986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU4YLMRYYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15731791, - 49.31773016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBSMDYN6DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15731791, - 49.31773016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBSMDYN6DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15731791, - 49.31773016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBSMDYN6DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15731791, - 49.31773016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBSMDYN6DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63326643, - 42.67651986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU4YLMRYYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63326643, - 42.67651986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU4YLMRYYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63326643, - 42.67651986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU4YLMRYYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63326643, - 42.67651986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU4YLMRYYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.377489, - 48.381631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGTKMH9RNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.377489, - 48.381631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGTKMH9RNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.377489, - 48.381631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGTKMH9RNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKVAE12QGET", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ2IG4DK1XFQ8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.972122, - 45.118791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKTTRBAZEKD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKVAE12QGET", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ2IG4DK1XFQ8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKVAE12QGET", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKVAE12QGET", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.972122, - 45.118791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKTTRBAZEKD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.972122, - 45.118791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKTTRBAZEKD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKVAE12QGET", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.377489, - 48.381631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGTKMH9RNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.972122, - 45.118791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKTTRBAZEKD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.972122, - 45.118791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKTTRBAZEKD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.972122, - 45.118791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKTTRBAZEKD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692802, - 48.092451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD8XXQESXZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692802, - 48.092451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD8XXQESXZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692802, - 48.092451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD8XXQESXZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692802, - 48.092451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD8XXQESXZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692802, - 48.092451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD8XXQESXZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.973404, - 45.118511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISKVAE12QGET", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0456, - 46.7954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZTXNK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0456, - 46.7954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZTXNK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0456, - 46.7954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZTXNK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20183059, - 49.29012164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKFOCWHZH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0456, - 46.7954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZTXNK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0456, - 46.7954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZTXNK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29854, - 43.764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SuperUgren", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29854, - 43.764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SuperUgren", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07607, - 45.9914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ9YJ5MPTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75301, - 48.8249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FATVBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.722233, - 48.611211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKKDSGJXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.722233, - 48.611211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKKDSGJXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.722233, - 48.611211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKKDSGJXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58512547, - 49.05670757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXZPR6RW7D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58512547, - 49.05670757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXZPR6RW7D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75301, - 48.8249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FATVBU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75301, - 48.8249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FATVBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75301, - 48.8249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FATVBU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82799104, - 48.61325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4WKO92WF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82799104, - 48.61325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4WKO92WF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82799104, - 48.61325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4WKO92WF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82799104, - 48.61325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4WKO92WF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82799104, - 48.61325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4WKO92WF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82799104, - 48.61325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4WKO92WF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.722233, - 48.611211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKKDSGJXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416289, - 46.330147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEGS0UBYCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:30,Mo-Th 13:30-17:30", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416289, - 46.330147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEGS0UBYCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:30,Mo-Th 13:30-17:30", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416289, - 46.330147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEGS0UBYCI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:30,Mo-Th 13:30-17:30", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17950063, - 49.39504655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5OWM91ZVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6647, - 45.2798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFHEYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6647, - 45.2798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFHEYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32809978, - 47.58592667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3UK5WP8FZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32809978, - 47.58592667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3UK5WP8FZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33434301, - 47.58522112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P51P4TWAKQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33735242, - 47.59067717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N0WQCZ7HFA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33735242, - 47.59067717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N0WQCZ7HFA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33434301, - 47.58522112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P51P4TWAKQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.891665, - 42.740108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN0FDTWVO7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.891665, - 42.740108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN0FDTWVO7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416289, - 46.330147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEGS0UBYCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:30,Mo-Th 13:30-17:30", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07607, - 45.9914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ9YJ5MPTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1576805, - 49.0259613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAVUWXJOAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1576805, - 49.0259613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAVUWXJOAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1576805, - 49.0259613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAVUWXJOAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13365823, - 49.41753476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBM4NFEKPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29679, - 48.08409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIMRJEM5YF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32232101, - 45.81269757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAJGBRQMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15869225, - 49.0263993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYFAUZGMKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1576805, - 49.0259613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAVUWXJOAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62082928, - 49.47632985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPU0QLAYHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62082928, - 49.47632985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPU0QLAYHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62082928, - 49.47632985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPU0QLAYHU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62082928, - 49.47632985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPU0QLAYHU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7385053, - 45.8815474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYTZ38P6RI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7385053, - 45.8815474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYTZ38P6RI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7162002, - 47.20721543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGDPUMKMC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7162002, - 47.20721543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGDPUMKMC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7162002, - 47.20721543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGDPUMKMC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7162002, - 47.20721543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGDPUMKMC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.435828, - 47.42967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSNNG1M2HO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93575, - 47.5493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLJKQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86469, - 47.587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NQKUBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84753, - 47.7303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LVMKNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99797, - 47.5083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJZRFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82794, - 47.7413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLFTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82794, - 47.7413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLFTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99797, - 47.5083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJZRFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99797, - 47.5083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJZRFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99797, - 47.5083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJZRFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86469, - 47.587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NQKUBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86469, - 47.587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NQKUBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92317, - 47.7177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLNRGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82794, - 47.7413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLFTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82794, - 47.7413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLFTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86469, - 47.587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NQKUBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89554, - 47.5837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMRLQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89554, - 47.5837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMRLQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89564, - 47.5838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMRLQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85355, - 47.6415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDHKLG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86415, - 47.6568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCPMXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92317, - 47.7177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLNRGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81418, - 47.6841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAEZPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92004, - 47.4895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFZCWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92004, - 47.4895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFZCWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83139, - 47.6221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARYNXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83139, - 47.6221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARYNXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83139, - 47.6221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARYNXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84753, - 47.7303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LVMKNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84753, - 47.7303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LVMKNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84753, - 47.7303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LVMKNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92004, - 47.4895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFZCWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92004, - 47.4895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFZCWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83139, - 47.6221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARYNXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81418, - 47.6841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAEZPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81418, - 47.6841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAEZPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81418, - 47.6841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAEZPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86136, - 47.6168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUZJTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86136, - 47.6168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUZJTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86136, - 47.6168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUZJTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92317, - 47.7177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLNRGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92317, - 47.7177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLNRGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86415, - 47.6568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCPMXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86114, - 47.6073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DYDNZG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86114, - 47.6073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DYDNZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96892, - 47.7327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCTAPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8492, - 47.6497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKNCN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86137, - 47.639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEDVRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85294, - 47.5574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGPJSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82891, - 47.6347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCGVER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82891, - 47.6347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCGVER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86128, - 47.6411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWMZSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96892, - 47.7327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCTAPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82891, - 47.6347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCGVER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96892, - 47.7327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCTAPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86114, - 47.6073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DYDNZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82891, - 47.6347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCGVER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96892, - 47.7327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCTAPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86128, - 47.6411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWMZSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86415, - 47.6568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCPMXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84058, - 47.6449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQYWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84058, - 47.6449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQYWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86128, - 47.6411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWMZSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86128, - 47.6411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWMZSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86137, - 47.639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEDVRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86137, - 47.639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEDVRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84058, - 47.6449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQYWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8492, - 47.6497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKNCN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89564, - 47.5838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMRLQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85343, - 47.6415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDHKLG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85355, - 47.6415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDHKLG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86136, - 47.6168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUZJTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99513, - 47.6106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XURZAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99513, - 47.6106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XURZAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93591, - 47.5493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLJKQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93591, - 47.5493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLJKQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99513, - 47.6106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XURZAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85294, - 47.5574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGPJSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85294, - 47.5574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGPJSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99513, - 47.6106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XURZAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85294, - 47.5574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGPJSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86137, - 47.639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEDVRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8492, - 47.6497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKNCN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84058, - 47.6449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNQYWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8492, - 47.6497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEKNCN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85343, - 47.6415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDHKLG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86415, - 47.6568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCPMXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGKHOMVXPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33244097, - 43.22653036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCRKSYJVIC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.220014, - 47.723598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOCQKWNTWR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.220014, - 47.723598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOCQKWNTWR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359625, - 48.587957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LD6WOWIWGQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359625, - 48.587957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LD6WOWIWGQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359625, - 48.587957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LD6WOWIWGQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359625, - 48.587957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LD6WOWIWGQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359625, - 48.587957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LD6WOWIWGQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359625, - 48.587957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LD6WOWIWGQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33244097, - 43.22653036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCRKSYJVIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.866422, - 50.102328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRYOZUKF31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.713675, - 43.419199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDHRHLIQ98", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.713675, - 43.419199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDHRHLIQ98", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45422, - 48.2615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZVENY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45557, - 48.2593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDEWXP", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 00:00-23:59,We-Su 00:00-23:59,Tu 12:00-23:59", - "start_date": "2017-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45422, - 48.2615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZVENY", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45557, - 48.2593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDEWXP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 00:00-23:59,We-Su 00:00-23:59,Tu 12:00-23:59", - "start_date": "2017-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.00039, - 43.134229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSIKRFQLWS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.00039, - 43.134229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSIKRFQLWS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7846053, - 49.30808485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFIRKWXAQF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88284912, - 49.15722184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2TJTN9BOP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88284912, - 49.15722184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2TJTN9BOP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89541815, - 49.36933788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OBVHYS3K6X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60640752, - 48.65596157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H8FAY4PGG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.379421, - 47.411066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0FFV7GKYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.37949435, - 47.41108404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKV9BI2KZM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71117147, - 48.6087136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTM4TZJ6VT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71117147, - 48.6087136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTM4TZJ6VT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71117147, - 48.6087136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTM4TZJ6VT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71117147, - 48.6087136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTM4TZJ6VT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71117147, - 48.6087136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTM4TZJ6VT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.939175, - 49.249274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PX08E5STVI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.939175, - 49.249274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PX08E5STVI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.00763121, - 49.229863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGQCVM7GLR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7846053, - 49.30808485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFIRKWXAQF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.00763121, - 49.229863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGQCVM7GLR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89541815, - 49.36933788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OBVHYS3K6X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397006, - 49.867493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2XEZHCMFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397006, - 49.867493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A2XEZHCMFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGKHOMVXPL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23530801, - 47.62172388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISUCBTJ2EA96", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.101503, - 47.810705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIN9KDH82BXV2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14457463, - 47.7409078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIN9MY4N14O9S", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.314226, - 47.495009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISUB73Z14R3J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.101503, - 47.810705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIN9KDH82BXV2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.314226, - 47.495009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISUB73Z14R3J", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2943012, - 48.07277426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISTZ4SN1K16K", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2943012, - 48.07277426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISTZ4SN1K16K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14457463, - 47.7409078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIN9MY4N14O9S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23530801, - 47.62172388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISUCBTJ2EA96", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGKHOMVXPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGKHOMVXPL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633002, - 47.63998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXHLTOEYHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633002, - 47.63998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXHLTOEYHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633002, - 47.63998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXHLTOEYHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8633002, - 47.63998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXHLTOEYHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGKHOMVXPL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGKHOMVXPL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.37103894, - 48.1594372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIN9J8TI3OT4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.37103894, - 48.1594372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIN9J8TI3OT4L", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03733, - 46.1158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXMREG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03733, - 46.1158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXMREG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55929424, - 50.5928785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDXBVSFWM2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24894131, - 48.70500749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRBGLBCPQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91693937, - 48.9396452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWK6HWHJML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24894131, - 48.70500749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRBGLBCPQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4915517, - 47.9414334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMQEKFB2BP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.459646, - 47.830781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HYBOIEYUXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09528, - 47.886972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S6P8Q3CCAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09998, - 43.676771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JD3PFCU6UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09986662, - 43.56260966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3UEPRL0WC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09986662, - 43.56260966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3UEPRL0WC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09986662, - 43.56260966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3UEPRL0WC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09986662, - 43.56260966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3UEPRL0WC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09986662, - 43.56260966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3UEPRL0WC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14711682, - 43.04394683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3VTPZSUY6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14711682, - 43.04394683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3VTPZSUY6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14711682, - 43.04394683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3VTPZSUY6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14711682, - 43.04394683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3VTPZSUY6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14711682, - 43.04394683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3VTPZSUY6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09677956, - 48.81827376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJBX8EKGQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09677956, - 48.81827376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJBX8EKGQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09677956, - 48.81827376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJBX8EKGQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09677956, - 48.81827376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJBX8EKGQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17909388, - 43.9286768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMHAP34DRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17909388, - 43.9286768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMHAP34DRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78282894, - 43.73555372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVIJULYZOR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78282894, - 43.73555372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVIJULYZOR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17064, - 48.756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLHFYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17064, - 48.756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLHFYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94351498, - 45.51721846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLRZ2QBZLR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09998, - 43.676771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JD3PFCU6UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09998, - 43.676771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JD3PFCU6UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85240031, - 47.00590714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYP2D9MOFJAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09998, - 43.676771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JD3PFCU6UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85240031, - 47.00590714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYP2D9MOFJAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85383794, - 47.00445851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIA2BS71158VL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.438944, - 48.251975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIVTFWC012SUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.438944, - 48.251975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIVTFWC012SUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.438944, - 48.251975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIVTFWC012SUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47057402, - 43.48590064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB38BL4MQ9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47057402, - 43.48590064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB38BL4MQ9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47057402, - 43.48590064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB38BL4MQ9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47057402, - 43.48590064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB38BL4MQ9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.47057402, - 43.48590064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB38BL4MQ9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54363498, - 43.49646422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAUUCNFXSE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54363498, - 43.49646422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAUUCNFXSE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54363498, - 43.49646422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAUUCNFXSE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54363498, - 43.49646422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAUUCNFXSE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54363498, - 43.49646422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAUUCNFXSE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16087089, - 43.03086672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MM3KFC2I4N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16087089, - 43.03086672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MM3KFC2I4N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16087089, - 43.03086672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MM3KFC2I4N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16087089, - 43.03086672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MM3KFC2I4N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16087089, - 43.03086672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MM3KFC2I4N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09998, - 43.676771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JD3PFCU6UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94351498, - 45.51721846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLRZ2QBZLR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94351498, - 45.51721846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLRZ2QBZLR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.454771, - 43.618492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLTSDBSR0J", - "socket:type2_combo": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.454771, - 43.618492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLTSDBSR0J", - "socket:type2_combo": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.725, - 44.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRR5ND4PC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.725, - 44.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRR5ND4PC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6330112, - 44.8043642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNYDSJRDXJ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603715, - 44.8499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFO5IA8AIX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.616092, - 44.83838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQQHXGJV4R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.616092, - 44.83838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQQHXGJV4R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.618926, - 44.944686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPI5X5UEAY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5237826, - 44.8624327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQHVHJU2LD", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6330112, - 44.8043642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNYDSJRDXJ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6132285, - 44.8462139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITZYZ0TFXP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6116, - 44.881022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJFY41A3IX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5237826, - 44.8624327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQHVHJU2LD", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6190241, - 44.7993976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVQVUIET9W", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.628291, - 44.84167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYNT8Y8UH1", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5706805, - 44.8436728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDNLYWELAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6190241, - 44.7993976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVQVUIET9W", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.628291, - 44.84167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYNT8Y8UH1", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.620298, - 44.85705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPPOLYGCLA", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43306962, - 46.13549714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODDTVCL4LZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.454771, - 43.618492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLTSDBSR0J", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.337082, - 45.920539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQGV4VYAGN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.337082, - 45.920539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQGV4VYAGN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.337082, - 45.920539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQGV4VYAGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.523745, - 45.845514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLER8IDBQE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.523745, - 45.845514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLER8IDBQE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.523745, - 45.845514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLER8IDBQE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43306962, - 46.13549714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODDTVCL4LZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43306962, - 46.13549714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODDTVCL4LZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43306962, - 46.13549714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODDTVCL4LZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43306962, - 46.13549714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODDTVCL4LZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43277992, - 46.13548599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODDTVCL4LZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08063, - 45.9379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0NEIU9I2N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08063, - 45.9379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0NEIU9I2N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08063, - 45.9379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0NEIU9I2N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08063, - 45.9379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0NEIU9I2N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08063, - 45.9379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0NEIU9I2N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08063, - 45.9379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0NEIU9I2N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42762, - 49.047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWHLZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85383794, - 47.00445851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIA2BS71158VL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85383794, - 47.00445851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIA2BS71158VL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35926831, - 47.9125884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAMVIOUWW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37070273, - 43.30887101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRQVYBAGVU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9084615, - 50.4389957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQM8VODW4I", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.28868032, - 50.24177291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H6BG1SY13J", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9084615, - 50.4389957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQM8VODW4I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545617, - 48.454124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GK6DXMJKPU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545617, - 48.454124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GK6DXMJKPU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.100221, - 46.179444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUW5BRYJM8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08224462, - 49.23751669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STVWQJJZNN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08224462, - 49.23751669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STVWQJJZNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08224462, - 49.23751669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STVWQJJZNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08224462, - 49.23751669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STVWQJJZNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08224462, - 49.23751669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STVWQJJZNN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08224462, - 49.23751669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STVWQJJZNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.08066214, - 49.09912957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GOTDLPYRIO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.08066214, - 49.09912957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GOTDLPYRIO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25804285, - 49.85596361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMLN1C0LRD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25804285, - 49.85596361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMLN1C0LRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25804285, - 49.85596361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMLN1C0LRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25804285, - 49.85596361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMLN1C0LRD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30798148, - 49.3672118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E65Z5TBQNI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30798148, - 49.3672118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E65Z5TBQNI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30798148, - 49.3672118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E65Z5TBQNI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.28868032, - 50.24177291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H6BG1SY13J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37070273, - 43.30887101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRQVYBAGVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85240031, - 47.00590714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYP2D9MOFJAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37070273, - 43.30887101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRQVYBAGVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39278508, - 48.94867145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6ZAAZNRMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39278508, - 48.94867145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6ZAAZNRMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39278508, - 48.94867145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6ZAAZNRMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39278508, - 48.94867145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6ZAAZNRMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7875025, - 49.38905597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRKBJPV0VD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7875025, - 49.38905597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRKBJPV0VD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17580561, - 48.78194961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXB6Z6J9Q5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17580561, - 48.78194961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXB6Z6J9Q5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17580561, - 48.78194961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXB6Z6J9Q5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54881175, - 48.83723465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GP0E9NWEG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:00-18:00,Tu 09:00-18:00,Th-Sa 09:00-18:00,We 09:00-19:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54881175, - 48.83723465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GP0E9NWEG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:00-18:00,Tu 09:00-18:00,Th-Sa 09:00-18:00,We 09:00-19:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54881175, - 48.83723465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GP0E9NWEG5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:00-18:00,Tu 09:00-18:00,Th-Sa 09:00-18:00,We 09:00-19:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.54881175, - 48.83723465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GP0E9NWEG5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:00-18:00,Tu 09:00-18:00,Th-Sa 09:00-18:00,We 09:00-19:00", - "start_date": "2021-12-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1615, - 46.865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSHRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1615, - 46.865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSHRVU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87933819, - 48.93416867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXOQTWENWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87933819, - 48.93416867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXOQTWENWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87933819, - 48.93416867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXOQTWENWY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87933819, - 48.93416867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXOQTWENWY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37070273, - 43.30887101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRQVYBAGVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37070273, - 43.30887101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRQVYBAGVU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30798148, - 49.3672118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E65Z5TBQNI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30798148, - 49.3672118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E65Z5TBQNI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30798148, - 49.3672118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E65Z5TBQNI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37078, - 48.719848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZPNMKUCFN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9217113, - 50.46247296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJA6AA6CA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45320379, - 49.10410314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4ZHGIJPO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45320379, - 49.10410314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4ZHGIJPO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.60757, - 50.4305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TKAQSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.60757, - 50.4305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TKAQSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.60757, - 50.4305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TKAQSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.60757, - 50.4305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TKAQSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.541816, - 48.235545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJSO8D6KCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.541816, - 48.235545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJSO8D6KCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169737255, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169737255, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16973726, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169737255, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16973726, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169737255, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16973726, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169737255, - 43.40428119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPP1YONDA5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04198941, - 49.13816135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P0E4AALLVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04198941, - 49.13816135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P0E4AALLVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85240031, - 47.00590714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYP2D9MOFJAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85383794, - 47.00445851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIA2BS71158VL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9217113, - 50.46247296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJA6AA6CA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9217113, - 50.46247296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJA6AA6CA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9217113, - 50.46247296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJA6AA6CA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37078, - 48.719848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZPNMKUCFN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5775891, - 48.73401665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSKHX7OORW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-18:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56151203, - 44.76579126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKOKCWBYAN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56151203, - 44.76579126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKOKCWBYAN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56151203, - 44.76579126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKOKCWBYAN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.519791, - 43.54469101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LILWCYZOHV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.519791, - 43.54469101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LILWCYZOHV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.519791, - 43.54469101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LILWCYZOHV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37433, - 48.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPOS14DX5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.620298, - 44.85705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPPOLYGCLA", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624746, - 44.826207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPFPKHKVWG", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624746, - 44.826207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPFPKHKVWG", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5343711, - 44.8557708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VG28KMGHSD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5671108, - 44.8308225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNBUAC7CIC", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5743715, - 44.8512286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I8EP8OVXXQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598102, - 44.82586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKLQVGKLSV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653022, - 44.845233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUWW8D2QTS", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5743715, - 44.8512286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I8EP8OVXXQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5633591, - 44.8341526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIIXCKNC8Q", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5671108, - 44.8308225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNBUAC7CIC", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5671108, - 44.8308225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNBUAC7CIC", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57113, - 44.8783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSEGUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5743715, - 44.8512286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I8EP8OVXXQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5735586, - 44.8313446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BH6XELLB75", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5700369, - 44.8246198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPQRIOQN8V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5633591, - 44.8341526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIIXCKNC8Q", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5633591, - 44.8341526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIIXCKNC8Q", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653022, - 44.845233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUWW8D2QTS", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5997005, - 44.8660147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UQAMTV1XPW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5596091, - 44.80663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUT6GF98YM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6101414, - 44.8327156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXRRZV9XIP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5997005, - 44.8660147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UQAMTV1XPW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6101414, - 44.8327156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXRRZV9XIP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5595587, - 44.8411016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPFVK4XLRP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5700933, - 44.800156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDOEGXYE2E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5861464, - 44.8386916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXX0ZUA3NL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5728467, - 44.8302701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G9SVHKLSTF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5735586, - 44.8313446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BH6XELLB75", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.552385, - 44.86105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0XDVX1DK6", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5730911, - 44.88033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FB5Q3EX4F8", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5730911, - 44.88033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FB5Q3EX4F8", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.552385, - 44.86105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0XDVX1DK6", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592695, - 44.840979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKHZF2JTNU", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592695, - 44.840979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKHZF2JTNU", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56079, - 44.85006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CS8HK5BBAM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5489381, - 44.8471942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHQG9BEFPV", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5489381, - 44.8471942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHQG9BEFPV", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5595587, - 44.8411016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPFVK4XLRP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56079, - 44.85006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CS8HK5BBAM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56079, - 44.85006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CS8HK5BBAM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5621268, - 44.830625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OBPEAJBZPZ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6008798, - 44.81902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNQRV3FCLS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.592695, - 44.840979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKHZF2JTNU", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5910003, - 44.8122102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D36RA9CGIF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5910003, - 44.8122102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D36RA9CGIF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5621268, - 44.830625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OBPEAJBZPZ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567786, - 44.8527873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UE0TCNCRDB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5743715, - 44.8512286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I8EP8OVXXQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5861464, - 44.8386916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXX0ZUA3NL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653022, - 44.845233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUWW8D2QTS", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6008798, - 44.81902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNQRV3FCLS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567786, - 44.8527873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UE0TCNCRDB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5343711, - 44.8557708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VG28KMGHSD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61431, - 44.8514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWDWMR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61431, - 44.8514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWDWMR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61036, - 44.8324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGVJRD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61036, - 44.8324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGVJRD", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61036, - 44.8324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGVJRD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6046, - 44.8302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJBEAJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6046, - 44.8302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJBEAJ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56412, - 44.8894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCBDVD", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61570076, - 44.88817928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVNFAZ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61570076, - 44.88817928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVNFAZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6046, - 44.8302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJBEAJ", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5812, - 44.8368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHJHDE", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57826, - 44.8446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUKJEM", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5902, - 44.8376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMHCTA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57826, - 44.8446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUKJEM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55604, - 44.8402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNXWXM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55604, - 44.8402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNXWXM", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57826, - 44.8446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUKJEM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5812, - 44.8368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHJHDE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61570076, - 44.88817928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVNFAZ", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61570076, - 44.88817928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVNFAZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61036, - 44.8324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGVJRD", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56097, - 44.8414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNCDL", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56412, - 44.8894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCBDVD", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56097, - 44.8414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNCDL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567786, - 44.8527873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UE0TCNCRDB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5700933, - 44.800156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDOEGXYE2E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5997005, - 44.8660147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UQAMTV1XPW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5596091, - 44.80663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUT6GF98YM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5596091, - 44.80663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUT6GF98YM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5700933, - 44.800156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDOEGXYE2E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61944, - 44.9218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNUSGV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55604, - 44.8402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNXWXM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55604, - 44.8402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNXWXM", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56097, - 44.8414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNCDL", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56412, - 44.8894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCBDVD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56097, - 44.8414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNCDL", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5902, - 44.8376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMHCTA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5902, - 44.8376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMHCTA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56412, - 44.8894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCBDVD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5902, - 44.8376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMHCTA", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61944, - 44.9218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNUSGV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61944, - 44.9218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNUSGV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61944, - 44.9218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNUSGV", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6046, - 44.8302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJBEAJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6106798, - 44.8240441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XANUJCTKNB", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5570323, - 44.84365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MME1DDQAPL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5570323, - 44.84365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MME1DDQAPL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5706805, - 44.8436728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDNLYWELAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5802927, - 44.8367369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMXU7KFQ3T", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5802927, - 44.8367369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMXU7KFQ3T", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5921201, - 44.8554383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JHHZIKO6YD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5698217, - 44.8580555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHUUHA0GTM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58493, - 44.84235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQU9YK1V5N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5698217, - 44.8580555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHUUHA0GTM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5698217, - 44.8580555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHUUHA0GTM", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5755883, - 44.843269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDY9IC0LN9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58493, - 44.84235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQU9YK1V5N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5755883, - 44.843269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDY9IC0LN9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5942345, - 44.8455488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIVI0H64KL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5921201, - 44.8554383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JHHZIKO6YD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5921201, - 44.8554383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JHHZIKO6YD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5942345, - 44.8455488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIVI0H64KL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6116, - 44.881022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJFY41A3IX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5794891, - 44.8424538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWHFRTAK5A", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5794891, - 44.8424538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWHFRTAK5A", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5858919, - 44.8785426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IUXFHAEHEQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614253, - 44.85121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGJLYOTLRF", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5794891, - 44.8424538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWHFRTAK5A", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5858919, - 44.8785426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IUXFHAEHEQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5755883, - 44.843269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDY9IC0LN9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.579258, - 44.856634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRJWTYLPXL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5812665, - 44.83053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CN09IUBP7D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5763597, - 44.8473288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYDRISMJD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624746, - 44.826207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPFPKHKVWG", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5728467, - 44.8302701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G9SVHKLSTF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6330112, - 44.8043642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNYDSJRDXJ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5728467, - 44.8302701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G9SVHKLSTF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.605597, - 44.793068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XH2LMSOLZF", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603715, - 44.8499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFO5IA8AIX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.605597, - 44.793068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XH2LMSOLZF", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603715, - 44.8499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFO5IA8AIX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614253, - 44.85121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGJLYOTLRF", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5868384, - 44.8240534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUNOV6UIWG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5812665, - 44.83053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CN09IUBP7D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5868384, - 44.8240534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUNOV6UIWG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5763597, - 44.8473288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYDRISMJD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5763597, - 44.8473288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYDRISMJD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5763597, - 44.8473288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYDRISMJD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5763597, - 44.8473288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAYDRISMJD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576803, - 44.865406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJRKKXQ4LW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576803, - 44.865406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJRKKXQ4LW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576803, - 44.865406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJRKKXQ4LW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.579258, - 44.856634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRJWTYLPXL", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5706805, - 44.8436728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDNLYWELAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5706805, - 44.8436728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDNLYWELAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5667689, - 44.8630867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWXRC5Z5LN", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.618926, - 44.944686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPI5X5UEAY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5497758, - 44.81634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHUUUYBQNY", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5497758, - 44.81634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHUUUYBQNY", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5497758, - 44.81634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHUUUYBQNY", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569361, - 44.835869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSZPUKTAXJ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57113, - 44.8783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSEGUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5693503, - 44.8139114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQDLTY7DRW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5931506, - 44.8063454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUIX1NLTFN", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5931506, - 44.8063454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUIX1NLTFN", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5910003, - 44.8122102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D36RA9CGIF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6008798, - 44.81902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNQRV3FCLS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5700369, - 44.8246198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPQRIOQN8V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5585728, - 44.8240481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPPTNFPCFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5776042, - 44.825539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSSZYXJHIQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5776042, - 44.825539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSSZYXJHIQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5776042, - 44.825539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSSZYXJHIQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5910003, - 44.8122102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D36RA9CGIF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5585728, - 44.8240481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPPTNFPCFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5585728, - 44.8240481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPPTNFPCFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5595587, - 44.8411016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPFVK4XLRP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6106798, - 44.8240441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XANUJCTKNB", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5667689, - 44.8630867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWXRC5Z5LN", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5567316, - 44.8275893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLCXPQDIMC", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.569361, - 44.835869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSZPUKTAXJ", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5567316, - 44.8275893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLCXPQDIMC", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5265646, - 44.8307381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A7Y2IJACYN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58493, - 44.84235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQU9YK1V5N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598102, - 44.82586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKLQVGKLSV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598102, - 44.82586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKLQVGKLSV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6196466, - 44.8638037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXUGFUVPNA", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6056556, - 44.8366088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZTA8PJY7H", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606393, - 44.8394463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXQ15C6CEX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606393, - 44.8394463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXQ15C6CEX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6056556, - 44.8366088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZTA8PJY7H", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576803, - 44.865406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJRKKXQ4LW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5265646, - 44.8307381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A7Y2IJACYN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5693503, - 44.8139114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQDLTY7DRW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6132285, - 44.8462139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITZYZ0TFXP", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5706805, - 44.8436728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDNLYWELAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6196466, - 44.8638037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXUGFUVPNA", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595881, - 44.85047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAY47NFYIK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606393, - 44.8394463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXQ15C6CEX", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595881, - 44.85047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAY47NFYIK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.595881, - 44.85047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAY47NFYIK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5567316, - 44.8275893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLCXPQDIMC", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5693503, - 44.8139114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQDLTY7DRW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39278508, - 48.94867145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6ZAAZNRMB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39278508, - 48.94867145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6ZAAZNRMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59277108, - 49.63422841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFUXGBCYW2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00,Sa 09:00-17:00", - "start_date": "2021-12-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.055057, - 47.35246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHXB6BHOGC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.219405, - 47.241996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7BSJNLZAP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.335454, - 47.490227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL48MPS8G5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.788198, - 47.440595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JLD6VKWKG7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.710612, - 47.313509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDAWUSC5CV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.17472886, - 47.51473703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USYS88RTB5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.134624, - 47.216845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECMQKU9KNJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.149525, - 46.997105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKODBJFESG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33941, - 47.626874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEEABPN1MQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53628868, - 47.39856979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQHHPTTJWY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.459429, - 47.542961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJNOG4MWPW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.416139, - 47.304456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKREGUWHSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794804, - 47.00871788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INJVTNTI9G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.416139, - 47.304456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKREGUWHSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.142181, - 47.237854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWPQYYSS4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.55660909, - 47.26238609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCJXTFL0DV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33899, - 47.622256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5PTFXJNAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771158, - 46.978156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPHUA5RFWJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.962356, - 47.198513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYG035N2OW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94829543, - 47.13451056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I1KBZZA5DT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63063337, - 46.95115721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHDBE7OY3W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794804, - 47.00871788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INJVTNTI9G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.142181, - 47.237854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWPQYYSS4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.647839, - 47.60017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEBHL6PHPC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2572, - 46.9368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAQWZOZ717", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8164268, - 47.0628197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y0IJDZQJPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.55660909, - 47.26238609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCJXTFL0DV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53628868, - 47.39856979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQHHPTTJWY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38383655, - 47.19284387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSP3WMHTEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4896383, - 47.1309424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USNRCK1VXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.219405, - 47.241996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7BSJNLZAP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.055057, - 47.35246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHXB6BHOGC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.459429, - 47.542961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJNOG4MWPW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33941, - 47.626874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEEABPN1MQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269768, - 47.467201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZLYXEDHOC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978646, - 47.260206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BB7YAA9QQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5721201, - 47.86279449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1NN2OESGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.174551, - 47.505772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZHA0AVXQL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.055057, - 47.35246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNV4EMC85I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8236791, - 46.9858866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHX1O8M83O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.667447, - 47.10687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DSYBZMZ2OJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.640472, - 47.220194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QABKCSRLPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.730724, - 46.938293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDKZLSMFE1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.647839, - 47.60017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEBHL6PHPC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23079647, - 47.28151538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U0NYWWAOQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2623935, - 47.10452985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IIQJYUNGSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186601, - 47.586744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUXQDJWN4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.879176, - 47.073573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q5A81CXZQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771158, - 46.978156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPHUA5RFWJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10898773, - 47.52014855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEXHH2DZUE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2623935, - 47.10452985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IIQJYUNGSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.156, - 46.9891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNCLKLI7GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1514, - 46.9864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBZ8TFSWEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.158105, - 46.98962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQN1LPHKFB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0239, - 47.2145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXSPR9YPGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0739, - 47.5296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWEC5ADH0N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.564, - 47.0266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XU0FKMJHGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0166, - 47.1361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGTJBSDTLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1014, - 47.0733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SK2JUSBR1G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1514, - 46.9864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBZ8TFSWEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0166, - 47.1361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGTJBSDTLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1014, - 47.0733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SK2JUSBR1G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.156, - 46.9891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNCLKLI7GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8188, - 47.29 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWJIYIXGPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9707, - 46.79 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9LEAC2WWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0239, - 47.2145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXSPR9YPGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2204, - 46.9809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZQWDNZP1W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8417, - 46.9052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBURVUBUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4547, - 46.8386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QPHCBREEPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0739, - 47.5296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWEC5ADH0N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.957, - 47.2839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LILSDM6BG9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3318, - 47.1727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJWNGA1KMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.957, - 47.2839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LILSDM6BG9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.931379, - 47.414098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLTGDVGEJ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.931379, - 47.414098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLTGDVGEJ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8188, - 47.29 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWJIYIXGPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36558, - 47.525011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LFYDOOHFLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94829543, - 47.13451056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I1KBZZA5DT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22118136, - 47.2413133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4GDWKU6P4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63063337, - 46.95115721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHDBE7OY3W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.962356, - 47.198513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYG035N2OW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33899, - 47.622256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5PTFXJNAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2572, - 46.9368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAQWZOZ717", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.721, - 46.8164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKHCYANOVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9707, - 46.79 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9LEAC2WWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92293063, - 47.41156346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIICHC8WP1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.152152, - 46.883626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SDPZT1PG8I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3318, - 47.1727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJWNGA1KMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0831, - 47.0018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CEGEWMOWL6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1288, - 47.3708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLS4BR4ZPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.158105, - 46.98962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQN1LPHKFB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.164861, - 47.483746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HYOVWUYG9D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.164861, - 47.483746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HYOVWUYG9D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.166472, - 47.016096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUGLHBJSNW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.166472, - 47.016096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUGLHBJSNW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.152152, - 46.883626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SDPZT1PG8I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978646, - 47.260206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BB7YAA9QQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.134624, - 47.216845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECMQKU9KNJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.640472, - 47.220194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QABKCSRLPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35302339, - 48.21262288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPR7IBU3VQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35302339, - 48.21262288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPR7IBU3VQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22550631, - 48.22329579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRDLUZETXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5061168, - 48.34271681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYVHZM8W55", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09662083, - 48.17929342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVE4YVDDY8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19294184, - 48.15891118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCG03FUW7F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32516, - 48.24885109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJXN1PMJGC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26409414, - 48.19546071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PT71J19KJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42688814, - 48.16737167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BX2FMMHQG6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06671977, - 48.34022524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ONM5JTR0HR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.205389, - 48.2864729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGITKSMNLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26034641, - 48.34304529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WNRYGDUGDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5574433, - 48.2339607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SI15JQVFV0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42688814, - 48.16737167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BX2FMMHQG6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22550631, - 48.22329579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRDLUZETXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32516, - 48.24885109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJXN1PMJGC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19294184, - 48.15891118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCG03FUW7F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39692652, - 48.29543923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DU2KLXCRUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39692652, - 48.29543923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DU2KLXCRUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2575271, - 48.2118863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OBTODAY7YQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2575271, - 48.2118863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OBTODAY7YQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05021346, - 48.3052349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHZG9LHHIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2680166, - 48.22524608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQK2HF4E49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2870472, - 48.217381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEL4IGFHEO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34141284, - 48.17470749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLXFPOSIPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5574433, - 48.2339607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SI15JQVFV0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34141284, - 48.17470749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLXFPOSIPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59796211, - 48.09110535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXADENINHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2934, - 48.08561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8AQTKTMH6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072452, - 48.342125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZG98BJYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13413979, - 48.35176095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMKVSDGNNM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4868744, - 48.13241146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCYYWDBZ8X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06671977, - 48.34022524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ONM5JTR0HR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51373319, - 48.0195143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGCTXOYGXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59796211, - 48.09110535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXADENINHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13413979, - 48.35176095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMKVSDGNNM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26102436, - 48.15970379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAGK3DXQNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2870472, - 48.217381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEL4IGFHEO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2812817, - 48.2001433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIIZRA3GWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279557, - 48.197436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOV1RQ6FH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26409414, - 48.19546071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PT71J19KJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29046029, - 48.1983793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVO6WOWEGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27002048, - 48.19667382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TZRYB3IGZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26034641, - 48.34304529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WNRYGDUGDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28408, - 48.195586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6IKLNJNWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27625239, - 48.196246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVM9WQYHNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279557, - 48.197436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOV1RQ6FH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28408, - 48.195586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6IKLNJNWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.788198, - 47.440595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JLD6VKWKG7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2680166, - 48.22524608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQK2HF4E49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.992732, - 48.1995538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO6VCOTK0I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.335454, - 47.490227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL48MPS8G5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186601, - 47.586744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUXQDJWN4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.149525, - 46.997105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKODBJFESG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.879176, - 47.073573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q5A81CXZQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36558, - 47.525011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LFYDOOHFLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23079647, - 47.28151538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U0NYWWAOQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10898773, - 47.52014855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEXHH2DZUE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8164268, - 47.0628197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y0IJDZQJPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5721201, - 47.86279449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1NN2OESGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22118136, - 47.2413133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4GDWKU6P4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.710612, - 47.313509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDAWUSC5CV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.667447, - 47.10687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DSYBZMZ2OJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8236791, - 46.9858866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHX1O8M83O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.730724, - 46.938293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDKZLSMFE1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4896383, - 47.1309424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USNRCK1VXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38383655, - 47.19284387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSP3WMHTEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269768, - 47.467201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZLYXEDHOC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.17472886, - 47.51473703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USYS88RTB5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.055057, - 47.35246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNV4EMC85I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.174551, - 47.505772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZHA0AVXQL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1360503, - 48.1387833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLVXFNK8GY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27002048, - 48.19667382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECMOSMPEFO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0821601, - 48.3240062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMMH9IWEVE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47557699, - 48.19868899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVLAC5Y3JN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2812817, - 48.2001433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIIZRA3GWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29046029, - 48.1983793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVO6WOWEGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26496823, - 48.2579944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1NNX3EPG6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1657181, - 48.3394837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJJKSFHD5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30749631, - 48.28968586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BAUQWL2XZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09662083, - 48.17929342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVE4YVDDY8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27002048, - 48.19667382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TZRYB3IGZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5061168, - 48.34271681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYVHZM8W55", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0665146, - 48.1136026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEORPSQQHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30987141, - 48.15216003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLGIGXAO8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.295757, - 48.088292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOFFE7IHNI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27625239, - 48.196246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVM9WQYHNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5484267, - 48.2864598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I0OZLDNOPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7283349, - 48.00171053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACURO64Z5F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.295757, - 48.088292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOFFE7IHNI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27002048, - 48.19667382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECMOSMPEFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0821601, - 48.3240062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMMH9IWEVE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7283349, - 48.00171053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACURO64Z5F", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1360503, - 48.1387833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLVXFNK8GY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.992732, - 48.1995538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO6VCOTK0I", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.564, - 47.0266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XU0FKMJHGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0217, - 47.1786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZIFAF8IUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59277108, - 49.63422841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFUXGBCYW2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00,Sa 09:00-17:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8466, - 46.7826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEKQGP7IH8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2742, - 46.4322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPQBSTVGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7762, - 46.6206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZCA5QOHFO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0244, - 46.8968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B34AM9DYGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.603, - 46.3075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSWOWTKK1A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0986, - 47.0774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOUZSC0GRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1115, - 46.6094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLFKICEPGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3961, - 46.9451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D8Z6WDTXQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78, - 46.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQHEFOD9T2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4839, - 46.3616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D5CNGLVE5R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5141, - 46.9909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDEFOWAYME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0587, - 46.6 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHR7FFWALM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7454, - 46.783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S01QE8YZCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9717, - 46.4807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1JWMFICCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5735, - 46.8686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNWRUJWIAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6628, - 46.434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEWRJQNRLS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6833, - 46.7217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ35PJ1LNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9882, - 46.485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKTSSSRIOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9996, - 46.5573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2OQF8EAZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7476577, - 46.5684612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBIZNBBJ9N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7476577, - 46.5684612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBIZNBBJ9N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.754427, - 46.912098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C9ASIEEJ39", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3393, - 46.2069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U0IEIGTQV5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.696, - 46.7142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BAZ89ZAKIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.655, - 47.0533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LII6X0QIDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76, - 46.2602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KRXTAYLACE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8466, - 46.7826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEKQGP7IH8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3393, - 46.2069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U0IEIGTQV5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2742, - 46.4322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPQBSTVGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7762, - 46.6206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZCA5QOHFO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4315, - 46.8075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKJDIXOW7V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4219, - 46.8057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WH4MBGWMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0986, - 47.0774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOUZSC0GRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1115, - 46.6094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLFKICEPGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3961, - 46.9451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D8Z6WDTXQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78, - 46.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQHEFOD9T2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4839, - 46.3616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D5CNGLVE5R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5141, - 46.9909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDEFOWAYME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0587, - 46.6 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHR7FFWALM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7454, - 46.783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S01QE8YZCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9717, - 46.4807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1JWMFICCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5735, - 46.8686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNWRUJWIAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6628, - 46.434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEWRJQNRLS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6833, - 46.7217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQ35PJ1LNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9882, - 46.485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKTSSSRIOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9996, - 46.5573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2OQF8EAZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3076, - 46.2916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD1SP1RLHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816533, - 46.794819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEKHN1FIEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94633148, - 46.87591316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTRU0LBPTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94633148, - 46.87591316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTRU0LBPTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816533, - 46.794819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEKHN1FIEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11367487, - 49.41435513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OHF6LP48UT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11367487, - 49.41435513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OHF6LP48UT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11367487, - 49.41435513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OHF6LP48UT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467489, - 49.232101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WO3R2EBCJ5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70957069, - 49.73738154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDBAHISUDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70957069, - 49.73738154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDBAHISUDA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70957069, - 49.73738154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDBAHISUDA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70957069, - 49.73738154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDBAHISUDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70957069, - 49.73738154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDBAHISUDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70957069, - 49.73738154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDBAHISUDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59277108, - 49.63422841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFUXGBCYW2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00,Sa 09:00-17:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59277108, - 49.63422841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFUXGBCYW2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00,Sa 09:00-17:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11367487, - 49.41435513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OHF6LP48UT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33435908, - 49.9116821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQ382YIB2F", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33435908, - 49.9116821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQ382YIB2F", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.809928, - 46.47206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M07QKYRRKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862446, - 46.783863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BM1NPADH8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.30009, - 46.952661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZNCFBJ5N9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.30009, - 46.952661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZNCFBJ5N9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.754427, - 46.912098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C9ASIEEJ39", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.786594, - 46.2460945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJAG0W3H7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887815, - 46.77541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9Y1GSKFUK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.887815, - 46.77541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9Y1GSKFUK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.786594, - 46.2460945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJAG0W3H7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.66859444, - 46.8966172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K1RXOZWOA5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.14387753, - 46.96801739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WD96MMJNF3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62090418, - 47.46554085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RC3V7VKDRM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832181, - 46.772568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E3P4AETVDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832181, - 46.772568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E3P4AETVDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.809928, - 46.47206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M07QKYRRKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.14387753, - 46.96801739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WD96MMJNF3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75561, - 46.212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXZXDAWWIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.862446, - 46.783863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BM1NPADH8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.66859444, - 46.8966172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K1RXOZWOA5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75561, - 46.212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXZXDAWWIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134109, - 47.907849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z7C3K9UPQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.696, - 46.7142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BAZ89ZAKIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76, - 46.2602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KRXTAYLACE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6845, - 46.6538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMYWWV4CUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521671, - 47.458741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RIYAV3WSUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.464834, - 46.890607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGRBPDRMKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.464834, - 46.890607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGRBPDRMKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.352329, - 46.715193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHEBY32X0M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4386, - 46.7627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWJNVSU38B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3858, - 47.3551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPK4J4CAMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.393, - 46.9987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRSMVV007E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5139, - 47.104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGQ8TK2DHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1196, - 46.7916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZTS5WD7DG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2727, - 46.9683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FM8964A1WI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5924, - 47.3673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFTKIZHXBB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.482666, - 46.701629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCWFXEXJ8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.482666, - 46.701629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCWFXEXJ8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.352329, - 46.715193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHEBY32X0M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.142463, - 46.991657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUBVDXONKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.158236, - 46.98754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTKSVVL1HL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.158236, - 46.98754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTKSVVL1HL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.142463, - 46.991657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUBVDXONKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6462, - 46.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CFEWDQL4XQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0217, - 47.1786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZIFAF8IUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.492, - 47.2805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MV1ZGUGKA7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1876, - 47.0146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDKDDYFEUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2727, - 46.9683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FM8964A1WI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1196, - 46.7916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZTS5WD7DG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2204, - 46.9809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZQWDNZP1W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5215, - 47.4588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOGNQADIP5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521671, - 47.458741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RIYAV3WSUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6462, - 46.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CFEWDQL4XQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1876, - 47.0146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDKDDYFEUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0213, - 47.0444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A0MTYFQTIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.492, - 47.2805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MV1ZGUGKA7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1288, - 47.3708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLS4BR4ZPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0831, - 47.0018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CEGEWMOWL6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.721, - 46.8164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKHCYANOVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92293063, - 47.41156346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIICHC8WP1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6829, - 47.2547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DW4BG8XNRL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8417, - 46.9052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBURVUBUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92678642, - 47.41023635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEHU81Y2UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.936014, - 47.063706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMWLUY3DJK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.936014, - 47.063706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMWLUY3DJK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5924, - 47.3673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFTKIZHXBB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5139, - 47.104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGQ8TK2DHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.393, - 46.9987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRSMVV007E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3858, - 47.3551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPK4J4CAMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4386, - 46.7627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWJNVSU38B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4547, - 46.8386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QPHCBREEPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0213, - 47.0444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A0MTYFQTIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5215, - 47.4588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOGNQADIP5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6628, - 46.613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJC67YT8UC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6829, - 47.2547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DW4BG8XNRL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4219, - 46.8057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WH4MBGWMTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7212, - 46.8329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TI3K2PT3CV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4852, - 46.308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTVSMAGTKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.476, - 46.6289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWIDNJ8YCI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1187, - 46.4518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSVFMAPDLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3638, - 46.6757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMCQAOUOYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0388, - 46.2763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJETDRPRLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2174, - 46.6313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTA0PZVM7C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3076, - 46.2916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD1SP1RLHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8322, - 46.3026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S8PA2ZJSYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7926, - 46.28 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEJQBLAVR2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8412, - 46.3606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZ7TY3PKMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.432, - 46.8416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4PTLVVEGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6337, - 46.8457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM4UWZE7FL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9088, - 46.5628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGMC7P1GHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0244, - 46.8968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B34AM9DYGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.603, - 46.3075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSWOWTKK1A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2436, - 46.7536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NME8JL5XVW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5976, - 46.5197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XK3BRSQEOA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2604, - 46.8865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANPKXW9RD5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.749, - 46.2422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1CCYW60HL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5976, - 46.5197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XK3BRSQEOA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.749, - 46.2422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1CCYW60HL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2604, - 46.8865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANPKXW9RD5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2174, - 46.6313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTA0PZVM7C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.655, - 47.0533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LII6X0QIDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92678642, - 47.41023635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEHU81Y2UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7212, - 46.8329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TI3K2PT3CV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4852, - 46.308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTVSMAGTKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.476, - 46.6289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWIDNJ8YCI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1187, - 46.4518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSVFMAPDLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3638, - 46.6757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMCQAOUOYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0388, - 46.2763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJETDRPRLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8322, - 46.3026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S8PA2ZJSYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4315, - 46.8075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKJDIXOW7V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18896031, - 46.86605558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DBFPKZBIGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7926, - 46.28 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEJQBLAVR2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8412, - 46.3606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZ7TY3PKMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2436, - 46.7536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NME8JL5XVW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6628, - 46.613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJC67YT8UC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6337, - 46.8457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM4UWZE7FL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9088, - 46.5628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGMC7P1GHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.432, - 46.8416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4PTLVVEGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6845, - 46.6538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMYWWV4CUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18896031, - 46.86605558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DBFPKZBIGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57826, - 44.8446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUKJEM", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5812, - 44.8368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHJHDE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5812, - 44.8368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHJHDE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.86193856, - 43.57953074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXDLS2JO5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40889536, - 43.58035329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKQZKII6258TW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40889536, - 43.58035329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKQZKII6258TW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40889536, - 43.58035329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKQZKII6258TW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40889536, - 43.58035329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKQZKII6258TW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14673436, - 42.97724425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUJVT7GFB3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14673436, - 42.97724425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUJVT7GFB3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29266, - 45.511079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O6N2OWJJ7V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29266, - 45.511079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O6N2OWJJ7V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27657, - 43.1215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVWVHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27657, - 43.1215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVWVHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29015886, - 43.12237719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZQCFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29015886, - 43.12237719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZQCFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27657, - 43.1215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVWVHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27657, - 43.1215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVWVHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6321366, - 44.98545202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M9KFBBOZNC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6321366, - 44.98545202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M9KFBBOZNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6321366, - 44.98545202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M9KFBBOZNC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6321366, - 44.98545202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M9KFBBOZNC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.682521, - 47.282556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYK0VLSICY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.682521, - 47.282556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYK0VLSICY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27743151, - 43.52549132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PQQFEQWKFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.86193856, - 43.57953074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXDLS2JO5O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.858976, - 48.745802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCBPDHC3FI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.108198, - 49.158216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIWYM8S6XDY4C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29063, - 48.1747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXYEWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29063, - 48.1747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXYEWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28882, - 48.177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZQZYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.271643, - 46.184467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRG66VW9M5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.271643, - 46.184467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRG66VW9M5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.809147, - 45.575564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXU4WVABPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.809147, - 45.575564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXU4WVABPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.809147, - 45.575564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXU4WVABPH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.809147, - 45.575564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXU4WVABPH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01062108, - 43.14269076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UAYALWREG0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01062108, - 43.14269076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UAYALWREG0", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40326, - 48.0762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXMNDN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40326, - 48.0762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXMNDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40326, - 48.0762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXMNDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56040181, - 45.53511035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ABYE1D2DBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56040181, - 45.53511035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ABYE1D2DBH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0404563, - 49.26611328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CUCLV63JAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0404563, - 49.26611328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CUCLV63JAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0404563, - 49.26611328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CUCLV63JAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0404563, - 49.26611328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CUCLV63JAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.108198, - 49.158216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIWYM8S6XDY4C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27743151, - 43.52549132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PQQFEQWKFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32263738, - 47.10276877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLMTM4TSXD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32263738, - 47.10276877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLMTM4TSXD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61950401, - 43.51944269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VICY36RAPV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.000974, - 48.579952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0NVYCD3RW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.000974, - 48.579952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0NVYCD3RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.000974, - 48.579952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0NVYCD3RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.000974, - 48.579952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0NVYCD3RW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.000974, - 48.579952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0NVYCD3RW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52744, - 45.589545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLCU4JWUCU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52744, - 45.589545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLCU4JWUCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52744, - 45.589545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLCU4JWUCU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52744, - 45.589545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLCU4JWUCU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31350109, - 49.35824221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BU0VIGCDAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31350109, - 49.35824221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BU0VIGCDAQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31350109, - 49.35824221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BU0VIGCDAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31350109, - 49.35824221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BU0VIGCDAQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31350109, - 49.35824221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BU0VIGCDAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31350109, - 49.35824221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BU0VIGCDAQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87393582, - 48.77668255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BMGYU8HPTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87393582, - 48.77668255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BMGYU8HPTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87393582, - 48.77668255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BMGYU8HPTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87393582, - 48.77668255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BMGYU8HPTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.000974, - 48.579952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0NVYCD3RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505337, - 45.903621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EI9OT5GBAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505337, - 45.903621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EI9OT5GBAB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81603256, - 49.53538899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JA7BNPMKOY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61950401, - 43.51944269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VICY36RAPV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724497, - 48.830065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZK2ET0HLL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724497, - 48.830065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZK2ET0HLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724497, - 48.830065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZK2ET0HLL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724497, - 48.830065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZK2ET0HLL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724497, - 48.830065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZK2ET0HLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.724497, - 48.830065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZK2ET0HLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81603256, - 49.53538899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JA7BNPMKOY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81603256, - 49.53538899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JA7BNPMKOY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81603256, - 49.53538899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JA7BNPMKOY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505337, - 45.903621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EI9OT5GBAB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52042378, - 48.46516894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODFHLRKA2C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505337, - 45.903621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EI9OT5GBAB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29063, - 48.1747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXYEWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29063, - 48.1747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXYEWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28882, - 48.177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZQZYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852455, - 45.502186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUZGJABMS9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3592665, - 43.13645127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2SCCZDTFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57660808, - 45.90715877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTOBODIIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33412213, - 47.91795631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCKGRBBWBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33412213, - 47.91795631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCKGRBBWBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33412213, - 47.91795631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCKGRBBWBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33412213, - 47.91795631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCKGRBBWBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07849, - 46.1648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BIJ5VAY56V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9563, - 45.0508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWMI4CXHPK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9563, - 45.0508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWMI4CXHPK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08890496, - 46.13001802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYDSRQVHDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852455, - 45.502186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQMAE8C3MB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852455, - 45.502186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQMAE8C3MB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852455, - 45.502186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQMAE8C3MB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870304, - 45.807891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWFQDD7ISJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3592665, - 43.13645127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2SCCZDTFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3592665, - 43.13645127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2SCCZDTFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3592665, - 43.13645127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2SCCZDTFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388285, - 47.107203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVV3WJXNY7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 18:00-23:45,Sa-Su 00:00-23:45", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29386, - 43.357456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MISIB4G9PH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29386, - 43.357456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MISIB4G9PH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87713341, - 45.70846066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAWKPFVNSO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-18:00", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26163316, - 48.92738723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCIIETN158", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06852562, - 48.75189522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AV6FY1L0OW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06852562, - 48.75189522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AV6FY1L0OW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06852562, - 48.75189522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AV6FY1L0OW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.06852562, - 48.75189522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AV6FY1L0OW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388285, - 47.107203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVV3WJXNY7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 18:00-23:45,Sa-Su 00:00-23:45", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7202101, - 45.93848209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVMYWOAM15", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26173312, - 50.89170991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDRSZH3ZTA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99683523, - 49.78908132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVSPKBVOHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99683523, - 49.78908132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVSPKBVOHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58012, - 45.9221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQLHACIPCL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58012, - 45.9221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQLHACIPCL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58012, - 45.9221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQLHACIPCL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58012, - 45.9221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQLHACIPCL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.17175276, - 45.67069922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q5Y2M4CFKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.17175276, - 45.67069922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q5Y2M4CFKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870304, - 45.807891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWFQDD7ISJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772501, - 45.747001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMVLQ77CMB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3814214, - 49.15939176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0G8NXXBNN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772501, - 45.747001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMVLQ77CMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.471785, - -21.327415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6DAT3JJ7M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4001393, - 44.89506938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CORSVFNDDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4001393, - 44.89506938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CORSVFNDDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4001393, - 44.89506938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CORSVFNDDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4001393, - 44.89506938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CORSVFNDDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4001393, - 44.89506938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CORSVFNDDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4001393, - 44.89506938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CORSVFNDDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23202423, - 46.18073298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDWU9FOQUI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23202423, - 46.18073298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDWU9FOQUI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23202423, - 46.18073298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDWU9FOQUI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23202423, - 46.18073298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDWU9FOQUI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43459013, - 44.92637035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QALUCBHTJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3814214, - 49.15939176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0G8NXXBNN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3814214, - 49.15939176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0G8NXXBNN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3814214, - 49.15939176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G0G8NXXBNN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.471785, - -21.327415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6DAT3JJ7M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.627019, - 43.090005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVBWQ4ACRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870304, - 45.807891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWFQDD7ISJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772501, - 45.747001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMVLQ77CMB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850701, - 45.714952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NL5HBZFIZT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850701, - 45.714952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NL5HBZFIZT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.850701, - 45.714952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NL5HBZFIZT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852455, - 45.502186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUZGJABMS9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852455, - 45.502186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUZGJABMS9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2764229, - 46.20207333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PBANG1G7XO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2764229, - 46.20207333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PBANG1G7XO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.627019, - 43.090005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVBWQ4ACRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.632901, - -20.9292757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZO153YAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.632901, - -20.9292757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZO153YAE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3460571, - 47.61749033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLMH5PS9PO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66544151, - 47.71272277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O9WI6RZMGF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4837216, - 47.9640548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEQ9HQWWAE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41763318, - 47.80005966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPTVYF69DD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.63387153, - 47.70402731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPWU1NKGAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3753439, - 47.6836009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGS1UBRXZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.75796258, - 47.89523505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5UCFNWMKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.80319003, - 48.02125754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJQXMOPFU6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.175336, - 47.610384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIYZMSQLBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1558136, - 47.5812445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPTFW3WTSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59036073, - 47.67741993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGEOPKPRGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48571032, - 47.51872413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYQIBGH61M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21, - 47.82238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZX1OHTORO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43990356, - 47.95138447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVJYQPYE2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.16613176, - 47.77365094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CFQAIZFBFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.16613176, - 47.77365094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBJSJAWJIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8816886, - 47.7454107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBKOAMYT9V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62615079, - 47.95208148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JARPJJ9XE9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76453936, - 47.45937177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWYZJ18PVY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57964262, - 47.85128056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3EJY8H0MI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53460235, - 47.80873781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NT5MWKKIOS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5150443, - 47.96251221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGSCLDYTHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62774134, - 47.90392773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD41RSGJAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00455549, - 47.58473446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ABZLE7DG3B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.72346938, - 47.81809778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKORVPTIL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.459646, - 47.830781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HYBOIEYUXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.175336, - 47.610384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIYZMSQLBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7432061, - 47.4617954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E7P4WVKFHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.80319003, - 48.02125754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJQXMOPFU6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347581, - 47.874537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKQMCXPLVY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87835624, - 47.95070082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XW1SLUHJGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31941336, - 48.04650803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ6WGXFAAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.347581, - 47.874537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKQMCXPLVY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4516898, - 47.8688752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS6YJGEDPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18165779, - 47.5496198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEP0X6NNHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1558136, - 47.5812445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OSPWWGX5NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5755278, - 47.98425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0HFZ0CNCY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4198563, - 47.5473062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JMYY8FYAWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2890823, - 47.9744138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GE5GIEJMTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76558346, - 47.96411764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCSVTXWFT3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7985363, - 47.8162201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDSFD1GRQ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76558346, - 47.96411764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCSVTXWFT3", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9467356, - 47.6989973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYKHGRPY0K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90832856, - 47.48937079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZOIQEYBLO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60794395, - 47.76733422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMWXUS8EQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0787814, - 47.7788174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ORELOOXXEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57231282, - 47.95238238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWPDQ07EIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41720939, - 47.66138612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFG840FCF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99303742, - 47.69658468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LX6ZXEAANA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1558136, - 47.5812445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPTFW3WTSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41496706, - 47.75529535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQWUDU187C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.235614, - 47.688826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5T7XB37GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35926831, - 47.9125884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAMVIOUWW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99303742, - 47.69658468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LX6ZXEAANA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57231282, - 47.95238238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWPDQ07EIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.79307672, - 48.04266162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UAFKYILXEA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0849445, - 47.8474925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKLPLJJ0NF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1558136, - 47.5812445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OSPWWGX5NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53460235, - 47.80873781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NT5MWKKIOS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54242295, - 47.52556183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWOTKK05J9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5755278, - 47.98425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0HFZ0CNCY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.56187165, - 47.89936488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQTIPBKW32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21, - 47.82238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZX1OHTORO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87835624, - 47.95070082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XW1SLUHJGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4516898, - 47.8688752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS6YJGEDPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69055871, - 47.6815771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMRHFI4HID", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4997946, - 47.61447201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCCSV36CXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76453936, - 47.45937177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWYZJ18PVY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21166092, - 47.85600811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSJQ80Q6ZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4198563, - 47.5473062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JMYY8FYAWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8816886, - 47.7454107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBKOAMYT9V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22435582, - 47.73200664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIM7NUC4LN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9961991, - 47.3679883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIBTKYNMO8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0849445, - 47.8474925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKLPLJJ0NF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3753439, - 47.6836009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGS1UBRXZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.79307672, - 48.04266162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UAFKYILXEA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3460571, - 47.61749033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLMH5PS9PO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4837216, - 47.9640548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEQ9HQWWAE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00455549, - 47.58473446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ABZLE7DG3B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62774134, - 47.90392773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RD41RSGJAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66544151, - 47.71272277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O9WI6RZMGF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41763318, - 47.80005966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPTVYF69DD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4384793, - 47.99364816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANJ1WIKMYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.75796258, - 47.89523505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5UCFNWMKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41496706, - 47.75529535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQWUDU187C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99164464, - 47.5088675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAAJHMSG0A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9398107, - 47.5152884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPRVLAFTZW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12184313, - 47.90355193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN6VPKVCYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99164464, - 47.5088675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAAJHMSG0A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41720939, - 47.66138612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFG840FCF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18165779, - 47.5496198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEP0X6NNHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12184313, - 47.90355193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN6VPKVCYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.235614, - 47.688826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5T7XB37GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22435582, - 47.73200664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIM7NUC4LN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7432061, - 47.4617954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E7P4WVKFHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59902024, - 47.73803183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2TOJUBYT5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0787814, - 47.7788174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ORELOOXXEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62615079, - 47.95208148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JARPJJ9XE9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.336888, - 47.707024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCORTW51OS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.668228, - 48.02690719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKTDTIRGQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072452, - 48.342125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZG98BJYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4868744, - 48.13241146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCYYWDBZ8X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51373319, - 48.0195143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGCTXOYGXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05021346, - 48.3052349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHZG9LHHIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30749631, - 48.28968586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BAUQWL2XZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99151431, - 47.50868558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNELILYBTU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99151431, - 47.50868558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNELILYBTU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.291223, - 47.732209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUSDRTRTIC", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.291223, - 47.732209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUSDRTRTIC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.336888, - 47.707024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCORTW51OS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1558136, - 47.5812445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV712M4PDY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24322849, - 47.93862015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L4SV657FSZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.50966513, - 47.96374608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z2LFDV9ICD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61674294, - 47.99331429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKDYATCML9", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52757787, - 47.8013507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYXSCDI0WU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5804025, - 47.8479239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VHOOTUNF03", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6368005, - 47.8067247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M2EKAJD91G", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.336888, - 47.707024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCORTW51OS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6368005, - 47.8067247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M2EKAJD91G", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24322849, - 47.93862015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L4SV657FSZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5484267, - 48.2864598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I0OZLDNOPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26496823, - 48.2579944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1NNX3EPG6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1657181, - 48.3394837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJJKSFHD5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36895993, - 49.26749752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OO9RLIGTXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.558292, - 48.53687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQQJRQFCA0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0665146, - 48.1136026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEORPSQQHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83342382, - 48.75577145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYUU2PWTSK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.668228, - 48.02690719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKTDTIRGQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29679, - 48.08409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIMRJEM5YF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2934, - 48.08561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8AQTKTMH6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.205389, - 48.2864729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGITKSMNLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47557699, - 48.19868899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVLAC5Y3JN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30987141, - 48.15216003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLGIGXAO8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1558136, - 47.5812445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV712M4PDY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60951036, - 47.92888636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DX43HOHF9A", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9961991, - 47.3679883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIBTKYNMO8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3504764, - 47.8748911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IJ9TQ4ZQGD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2890823, - 47.9744138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GE5GIEJMTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9467356, - 47.6989973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYKHGRPY0K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.72346938, - 47.81809778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKORVPTIL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.63387153, - 47.70402731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPWU1NKGAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60794395, - 47.76733422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMWXUS8EQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31941336, - 48.04650803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ6WGXFAAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.57964262, - 47.85128056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3EJY8H0MI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48571032, - 47.51872413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYQIBGH61M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4384793, - 47.99364816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANJ1WIKMYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5150443, - 47.96251221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGSCLDYTHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7985363, - 47.8162201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDSFD1GRQ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53779346, - 47.74316892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCFU7VLMR8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54242295, - 47.52556183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWOTKK05J9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09528, - 47.886972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S6P8Q3CCAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.56187165, - 47.89936488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQTIPBKW32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21166092, - 47.85600811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSJQ80Q6ZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59036073, - 47.67741993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGEOPKPRGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4997946, - 47.61447201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCCSV36CXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69055871, - 47.6815771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMRHFI4HID", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4915517, - 47.9414334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMQEKFB2BP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43990356, - 47.95138447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVJYQPYE2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90832856, - 47.48937079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZOIQEYBLO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.16613176, - 47.77365094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CFQAIZFBFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.16613176, - 47.77365094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBJSJAWJIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52757787, - 47.8013507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYXSCDI0WU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.71769496, - 47.97061618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEFA2NCMDL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73200014, - 47.66077552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKSZNBMAIQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.336888, - 47.707024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCORTW51OS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60951036, - 47.92888636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DX43HOHF9A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3504764, - 47.8748911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IJ9TQ4ZQGD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.71769496, - 47.97061618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEFA2NCMDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73200014, - 47.66077552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKSZNBMAIQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00304, - 47.58701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOUDAC89QN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5804025, - 47.8479239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VHOOTUNF03", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61674294, - 47.99331429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKDYATCML9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.291223, - 47.732209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNRVCQDURX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.50966513, - 47.96374608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z2LFDV9ICD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.539788, - 47.821982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFL3AFTDY3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.291223, - 47.732209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNRVCQDURX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.97351, - 47.621967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHMKAMC2LI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.539788, - 47.821982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFL3AFTDY3", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.97351, - 47.621967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHMKAMC2LI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.97351, - 47.621967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHMKAMC2LI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.97351, - 47.621967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHMKAMC2LI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00304, - 47.58701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOUDAC89QN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.613128, - 44.773752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC5UFQ7KI5", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35048, - 48.6058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KLLHKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07523059, - 47.43460702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTOLZUTYPN", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07523059, - 47.43460702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTOLZUTYPN", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3551384, - 48.75298099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RR19SMVEEU", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3551384, - 48.75298099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RR19SMVEEU", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93503158, - 48.29335853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVFYCFMIF5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.93503158, - 48.29335853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVFYCFMIF5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03729903, - 49.28873608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIAAJ792SH", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37968, - 49.4055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIAAJ792SH", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382598, - 48.741122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKSM9JPFEJ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382598, - 48.741122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKSM9JPFEJ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09516456, - 45.61089661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRITJNKUD6", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.96419024, - 48.8194641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMK6UA8RNE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.96419024, - 48.8194641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMK6UA8RNE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09836744, - 49.32627577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V9EYPVI8LD", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09836744, - 49.32627577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V9EYPVI8LD", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1864568, - 49.24856253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEEOXBC8Q5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.893774, - 46.853229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODWORPPTTT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.893774, - 46.853229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODWORPPTTT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.893774, - 46.853229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODWORPPTTT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.893774, - 46.853229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODWORPPTTT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53899911, - 48.44751307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0ZSMFKDDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74468811, - 44.31978763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXPENJ0ONZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74468811, - 44.31978763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXPENJ0ONZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74468811, - 44.31978763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXPENJ0ONZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9301, - 49.4715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPUTSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94213, - 49.4179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPRJJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94213, - 49.4179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPRJJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90783, - 49.4732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DYCYSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01774, - 49.4412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUVQGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9301, - 49.4715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPUTSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90783, - 49.4732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DYCYSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92565, - 49.4634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJWQTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92731, - 49.4588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHVWXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01774, - 49.4412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUVQGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92731, - 49.4588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHVWXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92565, - 49.4634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJWQTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35308, - 49.086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUSRPHWAJU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35308, - 49.086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUSRPHWAJU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34338, - 48.6237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVTHHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34338, - 48.6237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVTHHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31463, - 48.6347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUGQMG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35048, - 48.6058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KLLHKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74468811, - 44.31978763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXPENJ0ONZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.14611, - 49.0797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPYME0H9MH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.14611, - 49.0797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HPYME0H9MH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5453, - 50.4754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RB9CFF9JHS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53889648, - 48.44756489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4QQQCYB7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53884125, - 48.44748692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVK9HMQCCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53897766, - 48.44749172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6GDDDH42A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5453, - 50.4754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RB9CFF9JHS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02944, - 49.1133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHQ8FILD6X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44095006, - 43.32335871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FNEF1NNCUJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44095006, - 43.32335871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FNEF1NNCUJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08555, - 49.0441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZACWFQHTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08555, - 49.0441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZACWFQHTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.043611, - 49.06444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QP7WQ717RY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.043611, - 49.06444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QP7WQ717RY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12055, - 49.0469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGPGPUMXHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02944, - 49.1133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHQ8FILD6X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12055, - 49.0469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGPGPUMXHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.063137, - 48.91606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMPQB904LG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.063137, - 48.91606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMPQB904LG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44817631, - 48.56613528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MECXL47JEY", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.000045, - 47.517919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBBEFNGEV0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653494, - 44.7821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYVHYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.613128, - 44.773752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC5UFQ7KI5", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.613128, - 44.773752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC5UFQ7KI5", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.798435, - 41.955503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXUBZE62BL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.798435, - 41.955503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXUBZE62BL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.43748, - 42.60419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHM6D0U5CK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.43748, - 42.60419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHM6D0U5CK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11302, - 49.4172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0BSVGD4TL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11302, - 49.4172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0BSVGD4TL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220258, - 43.373851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KN5TJGPS90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220258, - 43.373851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KN5TJGPS90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220258, - 43.373851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KN5TJGPS90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220258, - 43.373851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KN5TJGPS90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220258, - 43.373851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KN5TJGPS90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220258, - 43.373851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KN5TJGPS90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53107109, - 49.29204648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPXUSFEVQZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53576208, - 49.29021357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRNPEZU7Q6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53107109, - 49.29204648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPXUSFEVQZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53576208, - 49.29021357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRNPEZU7Q6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.33588, - 41.6932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLSVKH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.33588, - 41.6932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLSVKH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49563, - 44.8523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDKGZT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614437, - 44.869939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFCD7VBOXJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614437, - 44.869939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFCD7VBOXJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55321, - 44.8118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDXANV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51971, - 44.8568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDWNMZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51971, - 44.8568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDWNMZ", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55321, - 44.8118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDXANV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653494, - 44.7821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYVHYG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51971, - 44.8568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDWNMZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653494, - 44.7821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYVHYG", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49563, - 44.8523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDKGZT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49563, - 44.8523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDKGZT", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.653494, - 44.7821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYVHYG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51758541, - 44.89619801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBANTOHEUX", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55321, - 44.8118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDXANV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51758541, - 44.89619801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBANTOHEUX", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55321, - 44.8118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDXANV", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.645157, - 44.851745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBGP5SFP0C", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56712, - 44.8384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSWRWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.645157, - 44.851745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBGP5SFP0C", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51971, - 44.8568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDWNMZ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56712, - 44.8384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSWRWK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.613128, - 44.773752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC5UFQ7KI5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49563, - 44.8523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDKGZT", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.000045, - 47.517919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBBEFNGEV0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.048031, - 48.000971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWR6BZZQGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44817631, - 48.56613528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MECXL47JEY", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.048031, - 48.000971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWR6BZZQGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24186015, - 48.71081884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VY4NRBJE2L", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24186015, - 48.71081884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VY4NRBJE2L", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58068217, - 48.72619677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOYXK5TOYQ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58068217, - 48.72619677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOYXK5TOYQ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646493, - 47.357512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LVMPNLAYFU", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646493, - 47.357512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LVMPNLAYFU", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39718179, - 43.46467058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJREN2NZLF", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39718179, - 43.46467058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJREN2NZLF", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.0513394, - 48.51453622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZHVKOIULL", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.0513394, - 48.51453622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZHVKOIULL", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12864739, - 48.69360911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJRZ79TYYV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12864739, - 48.69360911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJRZ79TYYV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5481583, - 43.46713262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMQABZ1RXS", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.10321425, - 48.88856813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZTNJWZFYA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.10321425, - 48.88856813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZTNJWZFYA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71875472, - 45.97819852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDX3BISWCW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71875472, - 45.97819852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDX3BISWCW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51725041, - 48.57942157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GZ4Z5QIFE5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51725041, - 48.57942157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GZ4Z5QIFE5", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87844812, - 48.94033181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3RJPKY0UW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87844812, - 48.94033181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3RJPKY0UW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1204683, - 45.04648058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T4PZWNFZBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1204683, - 45.04648058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T4PZWNFZBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1204683, - 45.04648058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T4PZWNFZBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.68778271, - 48.74537984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QROFJYHMEM", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7227, - 48.2085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXNJAH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7227, - 48.2085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXNJAH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83116, - 48.2099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNKANW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83116, - 48.2099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNKANW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19840202, - 47.37171155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNPCFQ7OXG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19840202, - 47.37171155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNPCFQ7OXG", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59124713, - 47.46810112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D7WPB3XQ6G", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59124713, - 47.46810112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D7WPB3XQ6G", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.68778271, - 48.74537984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QROFJYHMEM", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75204573, - 44.28766646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDZTIADNZR", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1204683, - 45.04648058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T4PZWNFZBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75204573, - 44.28766646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDZTIADNZR", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.864405448, - 46.77243698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJQYCSS9YJ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.864405448, - 46.77243698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJQYCSS9YJ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57866798, - 48.89269131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J0GFGGCJEV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57866798, - 48.89269131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J0GFGGCJEV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38346433, - 47.70708673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N41JBEJUX0", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38346433, - 47.70708673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N41JBEJUX0", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.90760516, - 47.90089427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YA46XKXKNV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.90760516, - 47.90089427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YA46XKXKNV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31463, - 48.6347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUGQMG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8625, - 48.6822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HAFZJ5OASW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05223102, - 42.53719241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFZ4RGRHQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23638238, - 47.90067129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y5T0WNKPDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91403, - 45.5756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DP3PB1WVYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91403, - 45.5756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DP3PB1WVYW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01092663, - 42.55717621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACHEMHFYWZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04252466, - 42.57561279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACHEMHFYWZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91435021, - 43.98437746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOQCWRZDSV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91440001, - 43.98442417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOQCWRZDSV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.023068, - 46.761133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R5KNPQNHQ2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.023068, - 46.761133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R5KNPQNHQ2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63678848, - 44.17387854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEG82YBLHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76213639, - 44.61024498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRQIJKR9TI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03333834, - 42.568332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0ZXMGMWDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03333834, - 42.568332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0ZXMGMWDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03333834, - 42.568332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0ZXMGMWDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03333834, - 42.568332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0ZXMGMWDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03333834, - 42.568332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0ZXMGMWDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03333834, - 42.568332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E0ZXMGMWDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63380721, - 43.45108975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTK8EYPJQ7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63380721, - 43.45108975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTK8EYPJQ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.79864, - 44.518903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXWV1XDUHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.79864, - 44.518903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXWV1XDUHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.23638238, - 47.90067129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y5T0WNKPDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05223102, - 42.53719241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFZ4RGRHQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910392, - 48.699533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGJL7CMQDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07039785, - 46.79957472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RDGTHWLARG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03189323, - 42.57131079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NLZDH1ZLAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03189323, - 42.57131079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NLZDH1ZLAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03189323, - 42.57131079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NLZDH1ZLAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.801605, - 45.100663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNM9MXUP5F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.801605, - 45.100663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNM9MXUP5F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02754858, - 42.77631046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBZ1ZLYPLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02754858, - 42.77631046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBZ1ZLYPLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.986047, - 46.740534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVEHPJBOQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.986047, - 46.740534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVEHPJBOQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.72339157, - 46.42051966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMLPHRRBEG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35350427, - 44.75737344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y2JPVALCYB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35350427, - 44.75737344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y2JPVALCYB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79263273, - 45.57902312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G5SA8D9JDH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79263273, - 45.57902312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G5SA8D9JDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84802588, - 43.41619671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LIKFVHWT88", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84802588, - 43.41619671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LIKFVHWT88", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84802588, - 43.41619671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LIKFVHWT88", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84802588, - 43.41619671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LIKFVHWT88", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80687827, - 43.89801995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVN7SXCAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80687827, - 43.89801995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVN7SXCAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07039785, - 46.79957472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RDGTHWLARG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.93411122, - 43.95327432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P5FSDYQORG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.93411122, - 43.95327432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P5FSDYQORG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16311718, - 44.42822916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNICVTLTDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16311718, - 44.42822916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNICVTLTDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.02523165, - 47.57283072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4NFTGGIIT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-22:30", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.02523165, - 47.57283072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4NFTGGIIT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-22:30", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2124275, - 44.58129089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKHSALDPCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2124275, - 44.58129089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKHSALDPCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62049141, - 46.50972776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESLPQIB7IA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62049141, - 46.50972776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESLPQIB7IA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386764, - 46.347566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJFZXU8ENZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386764, - 46.347566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJFZXU8ENZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386764, - 46.347566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJFZXU8ENZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.386764, - 46.347566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJFZXU8ENZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.035199, - 42.70705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV5TCKN6XS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.035199, - 42.70705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV5TCKN6XS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.035199, - 42.70705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV5TCKN6XS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.035199, - 42.70705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZV5TCKN6XS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96462164, - 42.57587349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD7OZRUY0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96462164, - 42.57587349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD7OZRUY0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.825951, - 46.666772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GL2UG1CLGJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716798, - 44.4296686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZABK7HN5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716798, - 44.4296686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZABK7HN5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3746474, - 46.03818528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP20MASWWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40231, - 49.212682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDJU4LBRSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40231, - 49.212682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDJU4LBRSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40231, - 49.212682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDJU4LBRSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08668388, - 44.11561019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IC5M8LGAEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.925386, - 47.614325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKLAPAGPNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.925386, - 47.614325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKLAPAGPNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07418678, - 43.56313443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U752AH0SVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07412793, - 43.56412564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HLGRFIGUUE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07412793, - 43.56412564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HLGRFIGUUE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07493271, - 43.56341819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSFZN0RULV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07493271, - 43.56341819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSFZN0RULV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07418678, - 43.56313443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U752AH0SVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08668388, - 44.11561019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IC5M8LGAEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84532543, - 43.78925551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZIPETWE26", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40231, - 49.212682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDJU4LBRSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84532543, - 43.78925551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZIPETWE26", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.880052, - 47.840631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJOBQ9REOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.880052, - 47.840631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJOBQ9REOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.457057, - 43.599069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKSGTHL8A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.457057, - 43.599069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKSGTHL8A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.457057, - 43.599069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKSGTHL8A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.457057, - 43.599069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZKSGTHL8A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.131665, - 44.708957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GID9KTPSHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.131665, - 44.708957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GID9KTPSHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03189323, - 42.57131079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NLZDH1ZLAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58925408, - 44.85612739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVUPAYBDCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58925408, - 44.85612739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVUPAYBDCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.45680189, - -21.3325437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRECSOIEMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59188, - 45.3216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z4TQI4RHCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399329, - 48.076864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGHSSGGSHZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399329, - 48.076864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGHSSGGSHZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399329, - 48.076864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGHSSGGSHZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399329, - 48.076864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGHSSGGSHZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399329, - 48.076864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGHSSGGSHZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399329, - 48.076864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGHSSGGSHZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36775842, - 46.6097689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGXNY9IT7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36775842, - 46.6097689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGXNY9IT7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36775842, - 46.6097689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGXNY9IT7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36775842, - 46.6097689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGXNY9IT7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36775842, - 46.6097689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGXNY9IT7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.254323, - 43.438624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGXXGHMZW9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.254323, - 43.438624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGXXGHMZW9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.254323, - 43.438624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGXXGHMZW9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.254323, - 43.438624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGXXGHMZW9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.254323, - 43.438624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGXXGHMZW9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.437215, - 48.219178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHQ9T8GJQL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.437215, - 48.219178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHQ9T8GJQL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.45680189, - -21.3325437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRECSOIEMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4593, - -21.334427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRILS7BK9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069566, - 49.106955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBVCG0WKZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069566, - 49.106955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBVCG0WKZP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71506, - 46.9978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGRRPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17993, - 48.4669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCPHMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.862269, - 48.680163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRFQQ84JRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8625, - 48.6822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HAFZJ5OASW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.862269, - 48.680163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRFQQ84JRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.862269, - 48.680163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRFQQ84JRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910392, - 48.699533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGJL7CMQDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.861093, - 48.681068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRFQQ84JRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910392, - 48.699533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGJL7CMQDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910392, - 48.699533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGJL7CMQDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17993, - 48.4669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCPHMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09308, - 48.488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHXYLZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71506, - 46.9978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGRRPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09308, - 48.488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHXYLZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8676, - 50.1057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHYFHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8676, - 50.1057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHYFHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33118227, - 50.35473676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HNRRDP5IDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:30", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986, - 50.364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPLHFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32317, - 50.3787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJPREQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33118227, - 50.35473676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HNRRDP5IDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:30", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32317, - 50.3787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJPREQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986, - 50.364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPLHFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4593, - -21.334427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRILS7BK9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46906132, - -21.3386997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKR9MTGPDS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89186964, - 43.16295103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T7R6DBLAOK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.45680189, - -21.3325437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRECSOIEMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87558193, - 45.637648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3WPD3XTW8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39259694, - 46.34035068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K8ATR4NEVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 10:00-16:30", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.75524852, - 42.55176041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8NQCQQXMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.75524852, - 42.55176041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8NQCQQXMD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03991263, - 42.59896285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKCK1HUA2A3KS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03991263, - 42.59896285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKCK1HUA2A3KS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18668478, - 46.34909012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MD5OPC7NA3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18668478, - 46.34909012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MD5OPC7NA3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18668478, - 46.34909012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MD5OPC7NA3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18668478, - 46.34909012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MD5OPC7NA3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18049609, - 45.8301449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G8PCTKKS0J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18049609, - 45.8301449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G8PCTKKS0J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87558193, - 45.637648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3WPD3XTW8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87558193, - 45.637648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3WPD3XTW8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87558193, - 45.637648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3WPD3XTW8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.817832, - -17.4884487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V8YS06G7V9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46906132, - -21.3386997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKR9MTGPDS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21839, - 46.2136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUEYTG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21839, - 46.2136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUEYTG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165117, - 45.743585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNGVSR6RI1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165117, - 45.743585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNGVSR6RI1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165117, - 45.743585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNGVSR6RI1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165117, - 45.743585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNGVSR6RI1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165117, - 45.743585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNGVSR6RI1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165117, - 45.743585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNGVSR6RI1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.817832, - -17.4884487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V8YS06G7V9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87558193, - 45.637648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3WPD3XTW8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36831, - 48.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKCESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36831, - 48.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKCESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36831, - 48.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKCESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36831, - 48.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKCESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36831, - 48.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKCESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36831, - 48.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKCESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.393396, - 47.170026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V99LMKPLKF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.393396, - 47.170026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V99LMKPLKF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87558193, - 45.637648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3WPD3XTW8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.874431, - 47.778742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTVN6MH7ZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03379187, - 42.57529937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRK1CDAXWF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.810482, - 47.745587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RIQRNFFR14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31290617, - 43.94430626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMNND9MFE7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88531439, - 43.44975075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSJKPAECMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88531439, - 43.44975075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSJKPAECMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07100038, - 44.94711176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VM4NTLS3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07100038, - 44.94711176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VM4NTLS3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07100038, - 44.94711176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VM4NTLS3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07100038, - 44.94711176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VM4NTLS3KB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074901, - 43.934673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMRYSD3DHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074901, - 43.934673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMRYSD3DHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.518204, - 48.832443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WEWO1M3ZLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.518204, - 48.832443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WEWO1M3ZLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42860295, - 43.10563786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVRXBIGBK0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42860295, - 43.10563786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVRXBIGBK0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.64044633, - 44.77402125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MR6MQ1MPFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.64044633, - 44.77402125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MR6MQ1MPFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.042848, - 48.452547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMZQBK19CJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31290617, - 43.94430626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMNND9MFE7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53448855, - 46.57480921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z2JIPWRRFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06276, - 44.86083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJWNPZGMIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53448855, - 46.57480921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z2JIPWRRFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V6CBXZ1GZG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V6CBXZ1GZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V6CBXZ1GZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V6CBXZ1GZG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.905458, - 46.570362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V6CBXZ1GZG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84123131, - 48.06762198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHFOOZJRFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84123131, - 48.06762198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHFOOZJRFN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59471, - 43.18814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D0GNFYOMAH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59471, - 43.18814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D0GNFYOMAH", - "socket:type2_combo": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8908, - 47.9577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A5L76J0IDO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.042848, - 48.452547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMZQBK19CJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.41319694, - 45.92446453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGD8YQM75S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.41319694, - 45.92446453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGD8YQM75S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74585148, - 47.73526312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VESSJQ8AJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39045673, - 43.1332234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJJF6AYYCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98148211, - 47.42034943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FA6ABFGHEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98148211, - 47.42034943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FA6ABFGHEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.72191453, - 46.86875514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M0LRMJF1GO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.72191453, - 46.86875514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M0LRMJF1GO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3602, - 47.98452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0XRO0D25I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3602, - 47.98452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0XRO0D25I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73600207, - 48.88381709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M0X4I4ZK8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73600207, - 48.88381709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M0X4I4ZK8M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73600207, - 48.88381709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M0X4I4ZK8M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73600207, - 48.88381709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M0X4I4ZK8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62493827, - 43.99756898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUVPSIP9F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.85101422, - 47.50811353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PC8GDNJARZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.85101422, - 47.50811353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PC8GDNJARZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.394188, - 47.092914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZLXJEZHBZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.24703674, - 44.45071211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJWGDOQTTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.24703674, - 44.45071211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJWGDOQTTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55281964, - 43.47239477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDPIDXOIQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.023416, - 47.247204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLUIDNHJUL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-17:00", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74585148, - 47.73526312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VESSJQ8AJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.18732993, - 44.83721199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NAR10DSPNM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84741, - 44.684185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTYZ0PBUZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84741, - 44.684185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTYZ0PBUZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.023416, - 47.247204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLUIDNHJUL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-17:00", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.023416, - 47.247204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLUIDNHJUL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-17:00", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.023416, - 47.247204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLUIDNHJUL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-17:00", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55281964, - 43.47239477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDPIDXOIQR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78906947, - 48.08593055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTOMNLSUF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78906947, - 48.08593055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTOMNLSUF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.214071, - 44.433196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZVL09C8UY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.214071, - 44.433196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZVL09C8UY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55281964, - 43.47239477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDPIDXOIQR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55281964, - 43.47239477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDPIDXOIQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6655, - 50.405368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVOLK1WG8K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.953022, - 49.026685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBP9DOPXZ7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.953022, - 49.026685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBP9DOPXZ7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.953022, - 49.026685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBP9DOPXZ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.953022, - 49.026685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBP9DOPXZ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.953022, - 49.026685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBP9DOPXZ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279678, - 49.843246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U6Y3WQLBRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279678, - 49.843246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U6Y3WQLBRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279678, - 49.843246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U6Y3WQLBRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279678, - 49.843246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U6Y3WQLBRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.412583, - 50.132965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RL2ISP2PKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279678, - 49.843246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U6Y3WQLBRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35206, - 49.661838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKF8PQJQCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35206, - 49.661838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKF8PQJQCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66728, - 49.308478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZB01ACJMQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.279678, - 49.843246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U6Y3WQLBRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.953022, - 49.026685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBP9DOPXZ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27385, - 49.904906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKVQPRSH7U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49416645, - 50.3628478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAOKV8QVO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96420518, - 49.26091526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYDGEFUMKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.741073, - 50.299633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9CPGZFUY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96420518, - 49.26091526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYDGEFUMKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.741073, - 50.299633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9CPGZFUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.540683, - 50.351036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9WJLR0VHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.741073, - 50.299633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9CPGZFUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371293, - 49.868784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G1QR7RBCW6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371293, - 49.868784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G1QR7RBCW6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.412583, - 50.132965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RL2ISP2PKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371293, - 49.868784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G1QR7RBCW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371293, - 49.868784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G1QR7RBCW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5GHD3D2JJMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27385, - 49.904906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKVQPRSH7U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27385, - 49.904906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKVQPRSH7U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27385, - 49.904906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKVQPRSH7U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6655, - 50.405368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVOLK1WG8K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49416645, - 50.3628478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAOKV8QVO0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.863058, - 50.105214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRDSBG1MTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.902652, - 49.011423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXEBYMAPVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34677484, - 48.77257456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FG7EONN82J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.902652, - 49.011423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXEBYMAPVN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.902652, - 49.011423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXEBYMAPVN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34677484, - 48.77257456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FG7EONN82J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.902652, - 49.011423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXEBYMAPVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.925624, - 50.279386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZ9ZG0T5CS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.863058, - 50.105214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRDSBG1MTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.698865, - 49.776584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEIRCTYOBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49416645, - 50.3628478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAOKV8QVO0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0036, - 49.278021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EACABDPXEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.558056, - 50.101286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I23JPPPTFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0036, - 49.278021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EACABDPXEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.558056, - 50.101286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I23JPPPTFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185883, - 49.001745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGQZPED0A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.925624, - 50.279386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZ9ZG0T5CS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66728, - 49.308478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZB01ACJMQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49416645, - 50.3628478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAOKV8QVO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.925624, - 50.279386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZ9ZG0T5CS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.925624, - 50.279386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZ9ZG0T5CS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.698865, - 49.776584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEIRCTYOBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.394188, - 47.092914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZLXJEZHBZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06276, - 44.86083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJWNPZGMIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.837897, - 48.642373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P54MDIWUGK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14462218, - 45.43337951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMJD1RDZHA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14462218, - 45.43337951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMJD1RDZHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183836, - 50.654348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1O4L2R16P33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43459848, - 45.44025668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPFMD6OOQ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44077822, - 45.4388527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F1BQQZEED1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43459848, - 45.44025668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPFMD6OOQ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42500159, - 45.4382768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y39L9HN88E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42500159, - 45.4382768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y39L9HN88E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42500159, - 45.4382768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y39L9HN88E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42500159, - 45.4382768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y39L9HN88E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44077822, - 45.4388527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F1BQQZEED1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965524, - 49.166529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXPJR8TDQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965524, - 49.166529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXPJR8TDQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62523, - 49.08 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTRDTE5TIF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513303, - 47.887476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYM7H1XRJQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513303, - 47.887476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYM7H1XRJQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14462218, - 45.43337951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMJD1RDZHA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14462218, - 45.43337951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMJD1RDZHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424714, - 43.06401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOR8S4ILKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.38112742, - 48.97655215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3RCEDCLUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22295, - 46.2068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJCQWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21959, - 46.2047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGGYCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21959, - 46.2047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGGYCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22996, - 46.2073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYTZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22996, - 46.2073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYTZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22182, - 46.203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZJYCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38173979, - 49.3700959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UCNXMWQKXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38173979, - 49.3700959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UCNXMWQKXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05861062, - 49.03502755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRHI28XGMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05861062, - 49.03502755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRHI28XGMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24099307, - 45.87718468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KETVBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24099307, - 45.87718468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KETVBA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5869454, - 48.03847418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKR5YQTB8B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5869454, - 48.03847418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKR5YQTB8B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.38112742, - 48.97655215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3RCEDCLUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74732, - 45.620729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJUUQQVTYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74732, - 45.620729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJUUQQVTYZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05632399, - 45.85350942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBZUHX5FDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05632399, - 45.85350942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBZUHX5FDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63671609, - 48.8628938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOOZLR9PNL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63671609, - 48.8628938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOOZLR9PNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13395744, - 49.3443027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3S9SCNTCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13395744, - 49.3443027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3S9SCNTCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.907633251, - 45.46952413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVE2ZUMRJB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.907633251, - 45.46952413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVE2ZUMRJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995311, - 44.381617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMAQGM6IDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995311, - 44.381617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMAQGM6IDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37140483, - 49.18673477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAWALWXPJN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37140483, - 49.18673477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAWALWXPJN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8988004, - 45.72850221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P24RIEK1UK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8988004, - 45.72850221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P24RIEK1UK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3899349, - 48.73937715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNBBD1WKUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3899349, - 48.73937715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNBBD1WKUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54375346, - 48.16407101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGIFNNP4ME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.415283, - 46.812308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWMAQR1XOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.415283, - 46.812308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWMAQR1XOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.415283, - 46.812308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWMAQR1XOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75677393, - 45.54369187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USCLUJN5UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4674687, - 48.1030083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZR77QZIYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4674687, - 48.1030083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZR77QZIYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9895772, - 50.4694764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DS4JPFUSGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9895772, - 50.4694764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DS4JPFUSGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.99039906, - 50.46822285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUDB1KDHWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.99039906, - 50.46822285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUDB1KDHWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75677393, - 45.54369187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USCLUJN5UJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.415283, - 46.812308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWMAQR1XOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.76905147, - 50.91536135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PLIIJQRR9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.76905147, - 50.91536135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PLIIJQRR9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.73840148, - 48.36185234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F9AE6Z9DRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.73840148, - 48.36185234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F9AE6Z9DRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.687556, - 46.907309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPFMVAYMZL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.687556, - 46.907309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPFMVAYMZL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22295, - 46.2068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJCQWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22182, - 46.203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZJYCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22996, - 46.2073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYTZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.197884, - 43.70389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLMXKNWVEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.546899, - 48.454037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YA93PLA1NX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.546899, - 48.454037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YA93PLA1NX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.546899, - 48.454037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YA93PLA1NX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.546899, - 48.454037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YA93PLA1NX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6768422, - 48.04035723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JG6YZDT24P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6768422, - 48.04035723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JG6YZDT24P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6019298, - 47.3276243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNYAC5TPKK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.54762, - 46.6752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N1TAYO5AC4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424714, - 43.06401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOR8S4ILKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.38009, - 47.72983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYPUGRMYGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.637139, - 47.682443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUEONUMUAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.637139, - 47.682443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUEONUMUAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.50691834, - 45.85937477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q8JLYNSB4D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.50691834, - 45.85937477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q8JLYNSB4D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.54762, - 46.6752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N1TAYO5AC4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.183034, - 48.96186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LZRLYBKPBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12119, - 49.1419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W35JGY6RKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12119, - 49.1419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W35JGY6RKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12267, - 49.1425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRHB3TMWPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.183034, - 48.96186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LZRLYBKPBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.183034, - 48.96186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LZRLYBKPBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.183034, - 48.96186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LZRLYBKPBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.197884, - 43.70389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLMXKNWVEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.860415, - 46.421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCZQAB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22996, - 46.2073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYTZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35698, - 43.4206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHHVSV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.153331, - 48.895022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZLZEXJEIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.999415, - 45.834863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LM1TTMTMU6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.999415, - 45.834863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LM1TTMTMU6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2246, - 46.2026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAUKZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22804, - 46.2048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMKMTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22804, - 46.2048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMKMTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2246, - 46.2026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAUKZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22996, - 46.2073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYTZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22996, - 46.2073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYTZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96995936, - 49.17113712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96966, - 49.171395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDC2RWJ6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12950967, - 48.95011985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQAQOPUOYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35698, - 43.4206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHHVSV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35698, - 43.4206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHHVSV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35698, - 43.4206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHHVSV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.35698, - 43.4206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHHVSV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.21945835, - 47.93281674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHLANB0NZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.21945835, - 47.93281674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHLANB0NZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12950967, - 48.95011985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQAQOPUOYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34592938, - 48.08614603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2ED4IIWU3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05129, - 49.0258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZFREV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05129, - 49.0258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZFREV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65184382, - 45.55649945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ED5TDOOHPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 00:00-23:45,Fr-Su 00:00-23:45,Th 14:00-23:45", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65184382, - 45.55649945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ED5TDOOHPJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 00:00-23:45,Fr-Su 00:00-23:45,Th 14:00-23:45", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.396767, - 48.27342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCACXZCBUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.396767, - 48.27342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCACXZCBUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96420518, - 49.26091526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYDGEFUMKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5053573, - 50.19622564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOMNOSKIU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5053573, - 50.19622564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOMNOSKIU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56127601, - 48.52366092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOFV72VTZQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4841, - 48.757675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ID7KOD7DHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447902, - 48.761441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEWTMI5SDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447902, - 48.761441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEWTMI5SDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447902, - 48.761441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEWTMI5SDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.914649, - 48.956825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWGLEPIVS9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.394425, - 49.037849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGBJXDCZFR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.914649, - 48.956825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWGLEPIVS9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.649431, - 48.547335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F9MHRVG3FP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.649431, - 48.547335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F9MHRVG3FP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345496, - 48.70545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTHA8SVPIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447902, - 48.761441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEWTMI5SDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.558648, - 50.413734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P4I9QD4QKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.712552, - 48.509481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWMJNJSRJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.667979, - 48.951953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P846IQNS4O", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.667979, - 48.951953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P846IQNS4O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.712552, - 48.509481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWMJNJSRJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4841, - 48.757675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ID7KOD7DHH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56127601, - 48.52366092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOFV72VTZQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586075, - 48.778438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRBTZV2OWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56127601, - 48.52366092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOFV72VTZQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56127601, - 48.52366092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOFV72VTZQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.140941, - 48.955565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VU5BILOYOJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345496, - 48.70545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTHA8SVPIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.771257, - 48.423309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRYOHUTHYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.771257, - 48.423309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRYOHUTHYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.676408, - 48.86813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y2ZMZANJDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398765, - 48.650183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "COWK19Z19U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56127601, - 48.52366092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOFV72VTZQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.394425, - 49.037849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGBJXDCZFR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.631308, - 48.563436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHUOWBPTAZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56127601, - 48.52366092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOFV72VTZQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.394425, - 49.037849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGBJXDCZFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.631308, - 48.563436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHUOWBPTAZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35587164, - 48.35348355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPINYLE999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35587164, - 48.35348355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPINYLE999", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35587164, - 48.35348355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPINYLE999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.394425, - 49.037849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGBJXDCZFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.678413, - 48.539965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQJVDT1XHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.425522, - 48.757105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEHIISJMZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477486, - 48.591026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LFKAACIEEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.015265, - 48.561171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIWAJNSDVO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.015265, - 48.561171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIWAJNSDVO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477486, - 48.591026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LFKAACIEEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.676408, - 48.86813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y2ZMZANJDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.425522, - 48.757105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEHIISJMZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398765, - 48.650183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "COWK19Z19U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.678413, - 48.539965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQJVDT1XHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087051, - 48.803194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OCKZD1UBE6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.140941, - 48.955565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VU5BILOYOJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087051, - 48.803194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OCKZD1UBE6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333352, - 48.062142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUIB2KDQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573146, - 43.939345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P8G873ZCEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.913914, - 43.67346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMV7TJ8J969D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025788, - 44.045126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIH0CXVKI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.913914, - 43.67346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMV7TJ8J969D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.144633, - 48.091598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AARDMXKVYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.144633, - 48.091598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AARDMXKVYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.144633, - 48.091598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AARDMXKVYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.144633, - 48.091598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AARDMXKVYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.144633, - 48.091598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AARDMXKVYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.144633, - 48.091598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AARDMXKVYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06467, - 47.271713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOFNVECAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06467, - 47.271713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOFNVECAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.878637, - 47.759701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6B2YXNKME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.801116, - 47.299634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRLDTFOSSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06467, - 47.271713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOFNVECAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573146, - 43.939345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P8G873ZCEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.913914, - 43.67346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMV7TJ8J969D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573146, - 43.939345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P8G873ZCEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.913914, - 43.67346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMV7TJ8J969D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.475283, - 48.415155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SORRN2XLAU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.056725, - 48.211137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z9THPO26DL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.837897, - 48.642373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P54MDIWUGK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.555006, - 48.026902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R13OWRMEIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.913914, - 43.67346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMV7TJ8J969D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025398, - 44.044928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIH0CXVKI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.573146, - 43.939345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P8G873ZCEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025788, - 44.045126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIH0CXVKI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025398, - 44.044928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIH0CXVKI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025398, - 44.044928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIH0CXVKI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025398, - 44.044928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIH0CXVKI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.078401, - 43.559483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL9FKMEJII", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.078401, - 43.559483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL9FKMEJII", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.913914, - 43.67346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMV7TJ8J969D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.801116, - 47.299634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRLDTFOSSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333352, - 48.062142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUIB2KDQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.140941, - 48.955565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VU5BILOYOJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333352, - 48.062142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUIB2KDQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56939099, - 46.89240915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXQ5H9G1WX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.983408, - 47.134593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8SQMR1KAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383981, - 47.084605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1MDRTWN1F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16849, - 47.278754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYVFBS73YI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.983408, - 47.134593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8SQMR1KAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.983408, - 47.134593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8SQMR1KAQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.983408, - 47.134593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8SQMR1KAQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333352, - 48.062142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUIB2KDQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.528757, - 46.589936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M3ELUWQTWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.528757, - 46.589936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M3ELUWQTWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333352, - 48.062142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUIB2KDQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.333352, - 48.062142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUIB2KDQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383981, - 47.084605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1MDRTWN1F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.140941, - 48.955565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VU5BILOYOJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586075, - 48.778438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRBTZV2OWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.878637, - 47.759701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6B2YXNKME", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56939099, - 46.89240915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXQ5H9G1WX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.878637, - 47.759701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6B2YXNKME", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379674, - 47.793541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAL9KPXK5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.878637, - 47.759701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6B2YXNKME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.878637, - 47.759701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6B2YXNKME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.878637, - 47.759701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6B2YXNKME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06467, - 47.271713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOFNVECAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56939099, - 46.89240915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXQ5H9G1WX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379674, - 47.793541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAL9KPXK5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16849, - 47.278754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYVFBS73YI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.513958, - 47.702978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMZBSDUXHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56939099, - 46.89240915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXQ5H9G1WX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56939099, - 46.89240915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXQ5H9G1WX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06467, - 47.271713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOFNVECAW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.513958, - 47.702978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMZBSDUXHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56939099, - 46.89240915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXQ5H9G1WX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06467, - 47.271713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOFNVECAW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35587164, - 48.35348355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPINYLE999", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.877493, - 48.85731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBTHYDIUJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.724508, - 48.551888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5MFSTXFBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14345933, - 43.66580333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOZQ9QYCLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67457696, - 46.00301708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RX0SUMTB6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91774543, - 45.89858412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZIIBHFC8FI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3266343, - 45.12885668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXUXAPMXY4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3266343, - 45.12885668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXUXAPMXY4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.20285973, - 43.67212823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICCUFQUYS4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53253307, - 43.25549446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PC8A6CPOJO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632829, - 43.462738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJRFCC8V5U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632829, - 43.462738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJRFCC8V5U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632829, - 43.462738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJRFCC8V5U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94866176, - 43.55014998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKPTV8HRVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94866176, - 43.55014998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKPTV8HRVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53253307, - 43.25549446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PC8A6CPOJO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67457696, - 46.00301708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RX0SUMTB6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3266343, - 45.12885668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXUXAPMXY4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3266343, - 45.12885668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXUXAPMXY4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13671516, - 45.64408191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULZI7QNTXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91774543, - 45.89858412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZIIBHFC8FI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67457696, - 46.00301708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RX0SUMTB6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13671516, - 45.64408191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULZI7QNTXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13335366, - 45.83682032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P47AQWL4FJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13335366, - 45.83682032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P47AQWL4FJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13335366, - 45.83682032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P47AQWL4FJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13335366, - 45.83682032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P47AQWL4FJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13671516, - 45.64408191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULZI7QNTXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13671516, - 45.64408191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULZI7QNTXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00531356, - 46.26329433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WXBEGJKS4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632829, - 43.462738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJRFCC8V5U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14345933, - 43.66580333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOZQ9QYCLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2535804, - 47.11048942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8TORQXRCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.20285973, - 43.67212823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICCUFQUYS4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5053573, - 50.19622564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOMNOSKIU2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5053573, - 50.19622564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOMNOSKIU2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.276512, - 49.649677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCTIMHBD9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.276512, - 49.649677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCTIMHBD9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.477506, - 50.392154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESLALBBYRH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.016758, - 49.221375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TOA3WWVTKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.016758, - 49.221375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TOA3WWVTKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.477506, - 50.392154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESLALBBYRH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5053573, - 50.19622564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOMNOSKIU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5053573, - 50.19622564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOMNOSKIU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.540683, - 50.351036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9WJLR0VHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.540683, - 50.351036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9WJLR0VHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96420518, - 49.26091526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BYDGEFUMKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.558648, - 50.413734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P4I9QD4QKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.741073, - 50.299633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9CPGZFUY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5GHD3D2JJMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.540683, - 50.351036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9WJLR0VHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49416645, - 50.3628478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAOKV8QVO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61761, - 48.5401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61761, - 48.5401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5GHD3D2JJMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85536994, - 43.11617585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUCH3KM1EX6J", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.540683, - 50.351036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9WJLR0VHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49416645, - 50.3628478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAOKV8QVO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5GHD3D2JJMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.540683, - 50.351036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9WJLR0VHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67457696, - 46.00301708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RX0SUMTB6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2535804, - 47.11048942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8TORQXRCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35587164, - 48.35348355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPINYLE999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.883947, - 45.274004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGZFJ7CM6V", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.248697, - 45.393022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFOHUPYC2O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.081907, - 45.051415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHWZWYFYDB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708527, - 45.157641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P82ADPOVAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.422381, - 45.393392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYZQT6BCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.081907, - 45.051415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHWZWYFYDB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.248697, - 45.393022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFOHUPYC2O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98943438, - 45.53882333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKXJSWERB9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064734, - 45.341785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJWECFVZZW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.689769, - 45.530129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ628PL5BR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.689769, - 45.530129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ628PL5BR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708527, - 45.157641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P82ADPOVAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.761574, - 45.186638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS8BTQA6LW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27761, - 45.753397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOHDGTS2IJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.308181, - 46.069647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMKRKF2NVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27761, - 45.753397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOHDGTS2IJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.574797, - 48.735403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYFHIGTUD5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.574797, - 48.735403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYFHIGTUD5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35587164, - 48.35348355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPINYLE999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.171991, - 48.188886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HU0OZDLEWF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.132466, - 49.110885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9CX3BOM9Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.132466, - 49.110885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9CX3BOM9Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.877493, - 48.85731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBTHYDIUJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.724508, - 48.551888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5MFSTXFBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05098444, - 45.49638608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFRAWCIG6H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.171991, - 48.188886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HU0OZDLEWF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884542, - 44.961164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MV8MFFBHDJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.308181, - 46.069647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMKRKF2NVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884542, - 44.961164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MV8MFFBHDJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.248697, - 45.393022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFOHUPYC2O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.081907, - 45.051415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHWZWYFYDB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.761574, - 45.186638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS8BTQA6LW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.883947, - 45.274004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGZFJ7CM6V", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2535804, - 47.11048942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8TORQXRCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34937411, - 45.341624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMZPDCEPIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.064734, - 45.341785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJWECFVZZW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.422381, - 45.393392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYZQT6BCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.248697, - 45.393022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFOHUPYC2O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.575313, - 46.395105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQT6PYP0AK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.575313, - 46.395105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQT6PYP0AK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884542, - 44.961164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MV8MFFBHDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34937411, - 45.341624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMZPDCEPIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98943438, - 45.53882333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKXJSWERB9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.575313, - 46.395105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQT6PYP0AK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2535804, - 47.11048942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8TORQXRCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2535804, - 47.11048942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8TORQXRCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2535804, - 47.11048942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8TORQXRCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.366808, - 45.269494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUPFNDHYBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.081907, - 45.051415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHWZWYFYDB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5494817, - 46.06298096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRZZVJ8N9E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5930157, - 45.52731397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC9D5OUSO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.366808, - 45.269494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUPFNDHYBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.575313, - 46.395105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OQT6PYP0AK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.009508, - 44.902444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4TXWRCMP1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.884542, - 44.961164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MV8MFFBHDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5930157, - 45.52731397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC9D5OUSO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.761574, - 45.186638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS8BTQA6LW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14189899, - 45.87740129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6BWAPE3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.761574, - 45.186638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS8BTQA6LW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.689769, - 45.530129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ628PL5BR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.009508, - 44.902444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4TXWRCMP1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.689769, - 45.530129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ628PL5BR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5494817, - 46.06298096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRZZVJ8N9E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05098444, - 45.49638608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFRAWCIG6H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54375346, - 48.16407101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGIFNNP4ME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54375346, - 48.16407101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGIFNNP4ME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.54375346, - 48.16407101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGIFNNP4ME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.186472, - 49.285782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRSXXFSM8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073741, - 48.924759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKNJSCFR5M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.167836, - 49.116592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QE0UDZRZSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.357187, - 49.19585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRFJICA7UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.768018, - 48.920078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XJGG1BX1BV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.224748, - 49.182022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OW2ZNJNSGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.317765, - 49.178341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRZST8CYGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.318416, - 49.172173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTOZBG9FBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.207578, - 49.136806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTZJ9GHEC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.314508, - 49.302155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRFJYJHILI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.789644, - 49.219543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLM6CEWDCK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185999, - 49.348248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUQ9MLUPEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568107, - 49.277843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYHQHHZGSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.297287, - 49.053543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIKF1QJBPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.202366, - 49.137093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEINKRD3YH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.207578, - 49.136806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTZJ9GHEC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.257186, - 49.277668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWIRJOHWIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753076, - 49.34211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ES3CPUZTN9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.098968, - 49.287991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUK16Y2VIO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.242004, - 48.96925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RH6ES7OMSP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.242383, - 49.198738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJAYNI3IS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.009537, - 49.14109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QETEMVQZCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.258216, - 49.288376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULAU7GGFK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.009537, - 49.14109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QETEMVQZCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.242004, - 48.96925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RH6ES7OMSP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.259154, - 49.23476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHMUTKEBFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753076, - 49.34211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ES3CPUZTN9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.250781, - 49.278812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKAVXVKURO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.411662, - 48.872952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKPWNBEKEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.186472, - 49.285782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRSXXFSM8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405064, - 49.020981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q7PXNU5TGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.250781, - 49.278812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKAVXVKURO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073146, - 49.071609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNMLPFSE3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.258216, - 49.288376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULAU7GGFK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.411662, - 48.872952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKPWNBEKEL", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.830717, - 48.965939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TKVDATEIGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.545198, - 49.195198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJYDD69MZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29001, - 49.108196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GH4NB90TR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.84048, - 48.937435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QM29QD00GP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.765131, - 49.108475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXEN3QKGGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149838, - 49.004524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HYNZH5Z54R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369945, - 49.325378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L7FSMQ3K4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.673939, - 49.266899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AEY2CFNUTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576396, - 48.920029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DI3I8QNHXO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030718, - 49.02076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUXSBPXK6V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.845168, - 49.011806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPQYPCO3UW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332626, - 49.202087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G1IUADBW5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342878, - 49.213123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VK9H0DVFDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.313085, - 49.286636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8PSNTNXXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457769, - 49.142525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QADLCK0CXV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.268632, - 49.014362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMBUXALML9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185999, - 49.348248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUQ9MLUPEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568107, - 49.277843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYHQHHZGSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.526418, - 49.135658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X48FPHUJQU", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838209, - 48.83251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0GXWLZLG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15161, - 49.005394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDEMGY1AN7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUU49NLCLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.649742, - 49.292091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z454AWT7LX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869728, - 49.242004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CTHD3M2P9Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.900723, - 48.800545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INJBEBIMWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606036, - 48.857273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIWGD0YPCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303315, - 49.000648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CTQR1SV2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGKZQ5NRRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.395594, - 49.332512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KTL39IK8IX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.220241, - 49.178085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUIJICJJYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJ44TQLKVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.281319, - 49.262711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WX6KIL9ED5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298521, - 49.073658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTYRGHNJ1K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09212, - 49.338612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W0OVAVEOX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391624, - 49.327827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTBNNOB9WY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269729, - 49.317024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVMBTJCG7K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.221156, - 49.143112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJXRR5YPFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567159, - 49.121574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X76NRT9OK4", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567159, - 49.121574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X76NRT9OK4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.257186, - 49.277668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWIRJOHWIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.346611, - 49.181694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8RWH8HXZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359741, - 49.203658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATTXYEMZSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355928, - 49.180374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLR3DJICQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.116762, - 49.28772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGX3GVGGGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718632, - 49.27946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSWUMHG7ZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718632, - 49.27946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSWUMHG7ZY", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512477, - 49.203705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GI08L1LAZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514652, - 49.212273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3FDKK3Y4Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.417781, - 49.16581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJLVQM5TAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.326488, - 49.044224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6CP8IZJCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369844, - 49.176125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXFKK77EJT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364503, - 49.184155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKCOZYZCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402715, - 49.182137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPPA9S0IZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360565, - 49.161114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPSZKEMHNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380138, - 49.199852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1BDJHEJBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34179, - 49.190582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PISAGDEROT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.767352, - 49.066422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6SL8CGLG1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.761437, - 49.158428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDURE5OIIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360357, - 49.187054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TTGYEWCD4D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365959, - 49.180958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JERHB0BEAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339124, - 49.27467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGOVR7LE8Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366633, - 49.18668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKEU2AXBPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34267, - 49.160675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G4DK6RTQ3D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365122, - 49.199177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ5B3FAJRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.348103, - 49.178352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLQCEIECNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.347497, - 49.197529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L9PDURSKHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371259, - 49.180359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOUSTRWIIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.254735, - 49.146415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEUKZBWL9R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355559, - 49.184055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANOW48R3FC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380302, - 49.204082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DELR9H5LME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924642, - 48.889202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIXFQFMHLO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.046794, - 49.149574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2CAXWCJQ2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.806385, - 49.090714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z7TCFV54RM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44147, - 49.185043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBCAAXHFBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.401482, - 49.175629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJGJFYAMMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396299, - 49.191658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KARW5YQ2G0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.224748, - 49.182022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OW2ZNJNSGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624253, - 49.176746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MHNO1J0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.281319, - 49.262711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WX6KIL9ED5", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.395594, - 49.332512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KTL39IK8IX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.202366, - 49.137093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEINKRD3YH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.297287, - 49.053543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIKF1QJBPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269729, - 49.317024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVMBTJCG7K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391624, - 49.327827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTBNNOB9WY", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJ44TQLKVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.221156, - 49.143112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJXRR5YPFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15161, - 49.005394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDEMGY1AN7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUU49NLCLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.104626, - 48.823738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFSQFDC7FS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.276981, - 49.124573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKLEA4YHK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303596, - 49.034939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLLQAPXJGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.259154, - 49.23476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHMUTKEBFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405064, - 49.020981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q7PXNU5TGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.458241, - 49.276985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPSHDAIWXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.452932, - 49.274509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DATGNHU3DP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149838, - 49.004524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HYNZH5Z54R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.351417, - 49.318889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q7EG4SVFR8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371768, - 49.138321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UW8EXZVJSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373516, - 49.254955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QTJUNHZSQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09212, - 49.338612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W0OVAVEOX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422221, - 49.128597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJC5UJDFHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.765131, - 49.108475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXEN3QKGGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.399309, - 49.160816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q8JNTUN4KO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298521, - 49.073658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTYRGHNJ1K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838209, - 48.83251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O0GXWLZLG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20465, - 49.279522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMGS18OQBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.082768, - 49.136223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EINYNUPISK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471729, - 49.199406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKNQO1ST1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.476986, - 49.205502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRHCX96IT0", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.649742, - 49.292091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z454AWT7LX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.220241, - 49.178085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUIJICJJYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30163, - 49.2966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WNPDHQMXEF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.288273, - 49.149944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZAMOLTFQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041252, - 49.387611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7MVLEKOXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369945, - 49.325378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L7FSMQ3K4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.288273, - 49.149944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZAMOLTFQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041252, - 49.387611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7MVLEKOXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.104626, - 48.823738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFSQFDC7FS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30163, - 49.2966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WNPDHQMXEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303596, - 49.034939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLLQAPXJGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.276981, - 49.124573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKLEA4YHK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.526418, - 49.135658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X48FPHUJQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.268632, - 49.014362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMBUXALML9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342878, - 49.213123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VK9H0DVFDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.167836, - 49.116592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QE0UDZRZSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707928, - 49.283667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EP02VR6FM7", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332626, - 49.202087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G1IUADBW5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.242383, - 49.198738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJAYNI3IS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.313085, - 49.286636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8PSNTNXXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.357187, - 49.19585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRFJICA7UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.079796, - 48.975983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQRZ3VP5TF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.739149, - 49.02071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWSB5QN7ZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355094, - 49.140018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWNXQPH8TD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.452932, - 49.274509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DATGNHU3DP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.220548, - 49.251003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCXRAXISUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371682, - 49.152481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUSPLHMJTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316764, - 49.127815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSMXC6RE5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07457, - 49.30206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AU5QM7JWO3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.349523, - 49.137749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJ98RD5Z2B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.350859, - 49.150547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7U2LCCD4Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707928, - 49.283667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EP02VR6FM7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.101562, - 49.320122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBKCJUXTTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237649, - 49.418694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUGT4ZAI25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345371, - 49.2024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EO8WQHNMPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.883248, - 48.893047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIGASENV23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753121, - 49.002502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S0QPPXPGJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.419354, - 49.024189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H9D6ILYVTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269149, - 49.408573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E4PPW00CLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.458241, - 49.276985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPSHDAIWXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.266243, - 49.177143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FH2Y5F6VYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.657508, - 49.07996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6V0AW4AW2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.098968, - 49.287991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUK16Y2VIO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.318416, - 49.172173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTOZBG9FBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.317765, - 49.178341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRZST8CYGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.830717, - 48.965939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TKVDATEIGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066339, - 45.093005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLQDZEBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.977225, - 48.930635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIKZ0YEDUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.976106, - 48.931375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OCKE9RJCWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.976106, - 48.931375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OCKE9RJCWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.977225, - 48.930635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIKZ0YEDUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40364, - 48.5522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUKUFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.545198, - 49.195198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJYDD69MZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29001, - 49.108196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GH4NB90TR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.84048, - 48.937435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QM29QD00GP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045078, - 49.230087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJTE9E9IPY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073146, - 49.071609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNMLPFSE3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.789644, - 49.219543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLM6CEWDCK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.314508, - 49.302155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRFJYJHILI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGKZQ5NRRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371768, - 49.138321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UW8EXZVJSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20465, - 49.279522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMGS18OQBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.476986, - 49.205502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRHCX96IT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869728, - 49.242004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CTHD3M2P9Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.082768, - 49.136223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EINYNUPISK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457769, - 49.142525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QADLCK0CXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373516, - 49.254955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QTJUNHZSQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073741, - 48.924759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKNJSCFR5M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.768018, - 48.920078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XJGG1BX1BV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.376339, - 49.29459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N46VHJDQAK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.403748, - 49.113762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APLE3YWA6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364503, - 49.184155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKCOZYZCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345371, - 49.2024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EO8WQHNMPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030718, - 49.02076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUXSBPXK6V", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.900723, - 48.800545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INJBEBIMWZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.977295, - 48.825451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZYDLQMDET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.201822, - 48.892605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNBVCEOPZC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207155, - 48.908218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E7G17KGQS8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.200854, - 48.895374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJDPVYD3VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478406, - 48.9856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M5E6SNDFBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048561, - 48.840977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTPIDLSOX7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038759, - 48.832748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HHQQUNK71G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.028522, - 49.016411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZNQHP1WWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8074, - 49.347195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KMIYT7TETI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44972, - 49.258343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVMAEKKID2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212339, - 49.299999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L1KGSJOGST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.750126, - 49.240765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2RRBXWBWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576396, - 48.920029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DI3I8QNHXO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.673939, - 49.266899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AEY2CFNUTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606036, - 48.857273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIWGD0YPCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303315, - 49.000648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CTQR1SV2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471729, - 49.199406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKNQO1ST1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.883248, - 48.893047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIGASENV23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.739149, - 49.02071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWSB5QN7ZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.977295, - 48.825451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZYDLQMDET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497137, - 49.180573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVKHTT0N8X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753121, - 49.002502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S0QPPXPGJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.419354, - 49.024189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H9D6ILYVTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269149, - 49.408573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E4PPW00CLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.079796, - 48.975983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQRZ3VP5TF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.349523, - 49.137749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJ98RD5Z2B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316764, - 49.127815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSMXC6RE5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07457, - 49.30206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AU5QM7JWO3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237649, - 49.418694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUGT4ZAI25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.350859, - 49.150547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7U2LCCD4Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.101562, - 49.320122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBKCJUXTTW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355094, - 49.140018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWNXQPH8TD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.845168, - 49.011806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPQYPCO3UW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422221, - 49.128597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJC5UJDFHM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402715, - 49.182137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPPA9S0IZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.351417, - 49.318889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q7EG4SVFR8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.905397, - 49.308865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEXJIN27J7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.103004, - 49.34425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNV9UFSQLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.477086, - 49.049606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZJM7OHIWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359741, - 49.203658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATTXYEMZSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365959, - 49.180958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JERHB0BEAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080297, - 49.36565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHLSGMESO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8849, - 48.84539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUVRR1EADB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566371, - 49.290745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWNCBEVKLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.126629, - 49.399658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWXGXZ6NVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.888584, - 48.84039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLD9JG2RUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.885866, - 48.837307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZE0IT59TV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.901956, - 48.844872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHIZSXG2KA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.882365, - 48.849442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X76ERWSQBX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.196851, - 48.896561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXNIEP4LJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.346611, - 49.181694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8RWH8HXZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.902956, - 49.3088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4TIQY3EGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360565, - 49.161114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPSZKEMHNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.516991, - 49.343346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAT5RXQZXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.042063, - 49.232769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZVO2GVYMJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.399309, - 49.160816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q8JNTUN4KO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497137, - 49.180573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVKHTT0N8X", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.206739, - 49.391857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHNTRB88GR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502256, - 49.098824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVMV4MMGBF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.504844, - 49.101223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRO5XUKNVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.203363, - 49.383171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A3XTEFNVP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677874, - 49.220016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHXITWLNL8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.450656, - 49.1567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDE2V8GM3H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37422, - 49.220695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQX8TOZGDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672848, - 48.853397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRQX6K3RY5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.292248, - 49.024796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTD4TMRIWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380138, - 49.199852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1BDJHEJBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.854415, - 48.840118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3XSSU87WY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.904563, - 49.374043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS5GOHL3FX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.266243, - 49.177143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FH2Y5F6VYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.101527, - 49.121693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGM47RQUIV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.66997785, - 41.99213631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIBEU92G1H0V7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.027659, - 49.33881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BM0HFP9CGY", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369844, - 49.176125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXFKK77EJT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355928, - 49.180374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLR3DJICQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34179, - 49.190582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PISAGDEROT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.401482, - 49.175629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJGJFYAMMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.116762, - 49.28772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGX3GVGGGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512477, - 49.203705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GI08L1LAZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514652, - 49.212273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3FDKK3Y4Y", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.417781, - 49.16581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJLVQM5TAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.326488, - 49.044224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6CP8IZJCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.657508, - 49.07996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6V0AW4AW2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.126629, - 49.399658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWXGXZ6NVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.275651, - 49.24791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDK2B0ERXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207299, - 49.124958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TYPWUQ7IGF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566371, - 49.290745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWNCBEVKLC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.882365, - 48.849442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X76ERWSQBX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.273392, - 49.245373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDWZ4GKGLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303067, - 49.226357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NU7TML0PLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.263063, - 49.192703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOGY4YK72D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298162, - 49.228291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D9MFWXE3BX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.059013, - 49.252686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RM3XAKQMTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.165716, - 49.127666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J69U6QU8AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.633224, - 49.021641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQ8FFLKBGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00949802, - 49.141176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBX7KUYBYW", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51847393, - 48.86885129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O5K3TST9TA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.029128, - 49.306469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDUIKKNQ0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80973, - 48.929178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSL7IGJCKA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80973, - 48.929178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSL7IGJCKA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00949802, - 49.141176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBX7KUYBYW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.885866, - 48.837307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZE0IT59TV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83958454, - 49.20576297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXVJI1COJF", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83958454, - 49.20576297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXVJI1COJF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339124, - 49.27467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGOVR7LE8Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83958454, - 49.20576297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXVJI1COJF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.079897, - 49.204884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSSZCNYGB6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.901956, - 48.844872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHIZSXG2KA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8849, - 48.84539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUVRR1EADB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.888584, - 48.84039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLD9JG2RUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672848, - 48.853397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRQX6K3RY5", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296286, - 49.204266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNJRPSZUVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478406, - 48.9856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M5E6SNDFBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44972, - 49.258343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVMAEKKID2", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30948, - 49.18362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVHMBVDDEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424286, - 49.085377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZWIKE3NEN", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48176, - 48.917553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIVCM51QGG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.283343, - 49.292938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1P1PYTVJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.840685, - 49.359657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REGMVHBLYO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366633, - 49.18668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKEU2AXBPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34267, - 49.160675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G4DK6RTQ3D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365122, - 49.199177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJ5B3FAJRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.348103, - 49.178352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLQCEIECNA", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.347497, - 49.197529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L9PDURSKHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.472951, - 48.986382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFMKY61J2Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371259, - 49.180359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOUSTRWIIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.007925, - 48.792999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDC8V4ORJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624253, - 49.176746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MHNO1J0", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.472951, - 48.986382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFMKY61J2Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.450656, - 49.1567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDE2V8GM3H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.854415, - 48.840118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3XSSU87WY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.327253, - 49.24025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUHVSPUVEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.047522, - 49.187656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYA3HIFJSJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.516991, - 49.343346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAT5RXQZXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418581, - 49.334774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FN2ROX2AOD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.432045, - 49.290691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNVE1QVN1M", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.904563, - 49.374043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS5GOHL3FX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.905397, - 49.308865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEXJIN27J7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.268813, - 49.146912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NNOGALD1MD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924642, - 48.889202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIXFQFMHLO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.046794, - 49.149574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2CAXWCJQ2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.806385, - 49.090714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z7TCFV54RM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44147, - 49.185043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBCAAXHFBE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.103004, - 49.34425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNV9UFSQLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406258, - 49.265347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWSCCFXPIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42327, - 49.164383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKI3EEJ2VG", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05630619, - 49.25483875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B5J7TXK8V7", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65415, - 48.5265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Melunermi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49075, - 48.6196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGFVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.588364, - 44.839064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KQBBVHXLQF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.588364, - 44.839064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KQBBVHXLQF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.716425, - 50.471483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZHQAZZMW0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.716425, - 50.471483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZHQAZZMW0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.13123, - 43.6624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CREOX7XV1T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.13123, - 43.6624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CREOX7XV1T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.552983, - 46.669091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWU01HIDPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.552983, - 46.669091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWU01HIDPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.552983, - 46.669091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWU01HIDPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.552983, - 46.669091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWU01HIDPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90698, - 48.9568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJPPHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90698, - 48.9568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJPPHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65415, - 48.5265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Melunermi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66033, - 48.5396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Melundoumer", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49076, - 48.6196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGFVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49076, - 48.6196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGFVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49075, - 48.6196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSGFVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.66997785, - 41.99213631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIBEU92G1H0V7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12708513, - 43.61424028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQSGOGAXZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12708513, - 43.61424028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQSGOGAXZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12708513, - 43.61424028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQSGOGAXZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12708513, - 43.61424028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQSGOGAXZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.124831199, - 43.6136856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7FO07OXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66033, - 48.5396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Melundoumer", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.139877, - 48.309631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMHQN8S1SRHJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05630619, - 49.25483875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B5J7TXK8V7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.139877, - 48.309631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMHQN8S1SRHJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.72717042, - 46.69645546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKHCDWYRQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.72717042, - 46.69645546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKHCDWYRQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13324, - 48.3018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYXKLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13324, - 48.3018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYXKLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706692, - 49.270863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JLGGHEVQB8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707942, - 49.280796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZABVAJT7UQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303376, - 49.171944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIQBOVFEMZ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.190402, - 49.23114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KTAWLU4IZC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.834075, - 49.182762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIQQYCDPTL", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51847393, - 48.86885129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O5K3TST9TA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05630619, - 49.25483875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B5J7TXK8V7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51847393, - 48.86885129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O5K3TST9TA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00949802, - 49.141176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBX7KUYBYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80973, - 48.929178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSL7IGJCKA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623846, - 49.338478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TL6QWRNSBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.99793, - 49.575503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJ0CFESMH8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0971813, - 45.60512863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFIO5AUOI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.81077, - 43.683611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXHEZ5LVEE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73394, - 48.5073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCLQK08V8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.139877, - 48.309631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMHQN8S1SRHJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.304622, - 45.574515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHOGL06J48", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.304622, - 45.574515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHOGL06J48", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.304622, - 45.574515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHOGL06J48", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73394, - 48.5073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCLQK08V8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73394, - 48.5073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCLQK08V8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73394, - 48.5073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCLQK08V8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.81077, - 43.683611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXHEZ5LVEE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83054, - 46.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZRU0KKOAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83054, - 46.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZRU0KKOAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83054, - 46.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZRU0KKOAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83054, - 46.7974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZRU0KKOAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3032, - 47.9133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USPBSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3032, - 47.9133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USPBSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355559, - 49.184055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANOW48R3FC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380302, - 49.204082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DELR9H5LME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080297, - 49.36565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHLSGMESO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11542093, - 49.28792082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVD33KIR4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.114171, - 49.292559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0VC43UH3BJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12437493, - 49.29202059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0JLHQ2NV4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11679, - 49.287709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WEXJ08SAGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624846, - 49.175013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZIMSLSNZI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624846, - 49.175013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZIMSLSNZI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.295243, - 49.134693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU23ZA9182RT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.295243, - 49.134693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU23ZA9182RT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49475503, - 49.07643468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYMDJ3CBV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49475503, - 49.07643468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYMDJ3CBV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624846, - 49.175013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZIMSLSNZI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49475503, - 49.07643468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRYMDJ3CBV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42273, - 49.329438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0I5HNSCPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303376, - 49.171944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIQBOVFEMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11542093, - 49.28792082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVD33KIR4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11679, - 49.287709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WEXJ08SAGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197402, - 49.287834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JX4EPALWZ9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08856957, - 49.01214577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V8ZXCF8KLK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.651174, - 49.080152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPFJ1PSP4H", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35496471, - 49.32043809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX6T6V86EB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.151468, - 49.10059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQ9ULMFY9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212054, - 49.2001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPAT8F1AHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05713, - 49.35398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMAJAU9VM3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12437493, - 49.29202059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0JLHQ2NV4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35496471, - 49.32043809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX6T6V86EB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08856957, - 49.01214577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V8ZXCF8KLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11563, - 49.29363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZTAT4QNOV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.651174, - 49.080152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPFJ1PSP4H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11563, - 49.29363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZTAT4QNOV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35496471, - 49.32043809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX6T6V86EB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11563, - 49.29363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZTAT4QNOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08856957, - 49.01214577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V8ZXCF8KLK", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12437493, - 49.29202059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0JLHQ2NV4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12437493, - 49.29202059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0JLHQ2NV4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42327, - 49.164383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKI3EEJ2VG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42273, - 49.329438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0I5HNSCPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.553656, - 48.850952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IS3DWADVWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11542093, - 49.28792082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVD33KIR4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.327253, - 49.24025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUHVSPUVEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37422, - 49.220695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQX8TOZGDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457717, - 49.334377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTTMEX22VQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045529, - 48.972824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9E72TSRLI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130294, - 49.381866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHJ5AEHHQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130306, - 49.381893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVJN0XRMBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332007, - 49.155018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BENXV427ED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396299, - 49.191658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KARW5YQ2G0", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.913899, - 48.872356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTDEL15IL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.856212, - 49.129959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFATER8YU3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.138757, - 49.402374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEPCJ1ONBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045078, - 49.230087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJTE9E9IPY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.376339, - 49.29459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N46VHJDQAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677874, - 49.220016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHXITWLNL8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.042063, - 49.232769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZVO2GVYMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303067, - 49.226357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NU7TML0PLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.220548, - 49.251003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCXRAXISUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.047522, - 49.187656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYA3HIFJSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.206739, - 49.391857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHNTRB88GR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11542093, - 49.28792082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVD33KIR4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.007925, - 48.792999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDC8V4ORJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207155, - 48.908218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E7G17KGQS8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.201822, - 48.892605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNBVCEOPZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.196851, - 48.896561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXNIEP4LJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.200854, - 48.895374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJDPVYD3VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.203363, - 49.383171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A3XTEFNVP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.027659, - 49.33881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BM0HFP9CGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.504844, - 49.101223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRO5XUKNVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502256, - 49.098824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVMV4MMGBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.403748, - 49.113762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APLE3YWA6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.273392, - 49.245373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDWZ4GKGLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298162, - 49.228291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D9MFWXE3BX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.079897, - 49.204884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSSZCNYGB6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.308223, - 49.18866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZV5YXNZQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.059013, - 49.252686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RM3XAKQMTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.292248, - 49.024796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTD4TMRIWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130306, - 49.381893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVJN0XRMBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405121, - 49.023678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TTTLWP8ERC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197402, - 49.287834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JX4EPALWZ9", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303376, - 49.171944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIQBOVFEMZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.268813, - 49.146912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NNOGALD1MD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.890959, - 48.840595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPTGDV5IRH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42327, - 49.164383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKI3EEJ2VG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8074, - 49.347195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KMIYT7TETI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332007, - 49.155018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BENXV427ED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.856212, - 49.129959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFATER8YU3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048561, - 48.840977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTPIDLSOX7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.308223, - 49.18866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZV5YXNZQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.750126, - 49.240765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2RRBXWBWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212054, - 49.2001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPAT8F1AHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.553656, - 48.850952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IS3DWADVWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.913899, - 48.872356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTDEL15IL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.481821, - 48.989704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WIO5B4HAFQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21517, - 49.057525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MACRGC0HBC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.439307, - 49.08564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K9DQ5BOGXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212339, - 49.299999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L1KGSJOGST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.902956, - 49.3088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4TIQY3EGA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.477086, - 49.049606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZJM7OHIWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.254735, - 49.146415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEUKZBWL9R", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360357, - 49.187054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TTGYEWCD4D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.761437, - 49.158428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDURE5OIIU", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.767352, - 49.066422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6SL8CGLG1", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.263063, - 49.192703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOGY4YK72D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130294, - 49.381866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHJ5AEHHQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.101527, - 49.121693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGM47RQUIV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.151468, - 49.10059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQ9ULMFY9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371682, - 49.152481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUSPLHMJTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405121, - 49.023678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TTTLWP8ERC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197402, - 49.287834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JX4EPALWZ9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.138757, - 49.402374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEPCJ1ONBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.890959, - 48.840595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPTGDV5IRH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21517, - 49.057525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MACRGC0HBC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.165716, - 49.127666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J69U6QU8AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.481821, - 48.989704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WIO5B4HAFQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418581, - 49.334774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FN2ROX2AOD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.114171, - 49.292559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0VC43UH3BJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.288768, - 49.13478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PEMGBREIMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623846, - 49.338478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TL6QWRNSBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.840685, - 49.359657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "REGMVHBLYO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424286, - 49.085377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZWIKE3NEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296286, - 49.204266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNJRPSZUVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.283343, - 49.292938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1P1PYTVJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.114171, - 49.292559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0VC43UH3BJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48176, - 48.917553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIVCM51QGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03761395, - 49.01914912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZNFVRZSHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.114171, - 49.292559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU0VC43UH3BJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30948, - 49.18362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVHMBVDDEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406258, - 49.265347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWSCCFXPIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.439307, - 49.08564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K9DQ5BOGXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.288768, - 49.13478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PEMGBREIMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05713, - 49.35398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMAJAU9VM3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05713, - 49.35398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMAJAU9VM3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.275651, - 49.24791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDK2B0ERXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457717, - 49.334377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTTMEX22VQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045529, - 48.972824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9E72TSRLI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.028522, - 49.016411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZNQHP1WWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038759, - 48.832748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HHQQUNK71G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707942, - 49.280796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZABVAJT7UQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706692, - 49.270863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JLGGHEVQB8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207299, - 49.124958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TYPWUQ7IGF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03761395, - 49.01914912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZNFVRZSHY", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.633224, - 49.021641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQ8FFLKBGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.029128, - 49.306469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDUIKKNQ0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.190402, - 49.23114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KTAWLU4IZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.834075, - 49.182762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIQQYCDPTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.432045, - 49.290691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNVE1QVN1M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03761395, - 49.01914912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZNFVRZSHY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.056725, - 48.211137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z9THPO26DL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9879523, - 48.6675565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFNM5FW7HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.471356969, - 43.31339639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDZGF5PWXI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67237904, - 50.46757455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8VY7PVFBV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67237904, - 50.46757455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8VY7PVFBV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67237904, - 50.46757455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8VY7PVFBV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67237904, - 50.46757455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8VY7PVFBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.142817, - 45.755703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JM8ETU9UBG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.142817, - 45.755703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JM8ETU9UBG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.18896582, - 47.88217299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJ4BORJXNJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.18896582, - 47.88217299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJ4BORJXNJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.741582, - 45.586642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ2H7CNY2IO14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.741582, - 45.586642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ2H7CNY2IO14", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.24029603, - 43.68212111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIQJLO1TXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.24029603, - 43.68212111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIQJLO1TXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10790934, - 43.51299111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4M4GQBZCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10790934, - 43.51299111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4M4GQBZCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97394, - 46.374656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSE7UXMPKB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.213878, - 47.962185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZOVLMKQWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47135697, - 43.31339639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDZGF5PWXI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28624508, - 47.08027089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA7W3VU7CJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51352747, - 43.58381435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTR2GOJ0TI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08304118, - 48.73065177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DVSLEX3W4G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.490938, - 43.504979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLAMWPZJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8491821, - 47.07137504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSJI4GKDMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8491821, - 47.07137504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSJI4GKDMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8491821, - 47.07137504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSJI4GKDMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8491821, - 47.07137504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MSJI4GKDMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55017662, - 42.11461946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBUT3DZJBH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55017662, - 42.11461946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBUT3DZJBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55017662, - 42.11461946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBUT3DZJBH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55017662, - 42.11461946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBUT3DZJBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55017662, - 42.11461946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBUT3DZJBH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76945343, - 50.63343045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HF3BZTMM7P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238957843, - 48.70900705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJV43VM9LI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238957843, - 48.70900705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJV43VM9LI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.497648, - 43.776233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6KMX075ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97394, - 46.374656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSE7UXMPKB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.546796, - 48.467465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CX85FFNWSA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0909, - 45.6604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G53AI8R0G2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59592, - 44.8262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GS6LRLDFED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62097, - 45.5586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GE9BBRGUJX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62097, - 45.5586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GE9BBRGUJX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.642588, - 48.844303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RDCHWGQR7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.642588, - 48.844303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RDCHWGQR7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.642588, - 48.844303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RDCHWGQR7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.642588, - 48.844303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RDCHWGQR7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79741563, - 50.13490872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCGQW3FISF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.79741563, - 50.13490872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCGQW3FISF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31549, - 47.7903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVDOGAVSWH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31549, - 47.7903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVDOGAVSWH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31549, - 47.7903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVDOGAVSWH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31549, - 47.7903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVDOGAVSWH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28624508, - 47.08027089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA7W3VU7CJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13344649, - 44.18653723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSU6OTRKUO", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59592, - 44.8262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GS6LRLDFED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59592, - 44.8262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GS6LRLDFED", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59592, - 44.8262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GS6LRLDFED", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59592, - 44.8262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GS6LRLDFED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59592, - 44.8262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GS6LRLDFED", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48380838, - 44.03194015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKLMJTPPX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13344649, - 44.18653723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSU6OTRKUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.257253, - 45.824272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOH2CQN127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.257253, - 45.824272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOH2CQN127", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98026, - 46.5475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RP6RJUZXHE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98026, - 46.5475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RP6RJUZXHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.757397, - 46.213978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6PQZXSMTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08304118, - 48.73065177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DVSLEX3W4G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.29887, - 48.6106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFRBGTHDDU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.29887, - 48.6106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFRBGTHDDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14865627, - 48.8912276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQ1IWU1HSJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.6461922, - 42.406751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XR1ACRARZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21888, - 49.1121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PESMYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21648656, - 49.11128239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEVDN4ZT1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21648656, - 49.11128239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEVDN4ZT1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21888, - 49.1121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PESMYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.775882, - 48.215477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYSYWYNZTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.775882, - 48.215477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYSYWYNZTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3419384, - 48.68083874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLBIKEE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3419384, - 48.68083874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCQLBIKEE8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60638081, - 48.69764566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLFXSLPUEB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60638081, - 48.69764566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLFXSLPUEB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60960815, - 48.57796729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKAA3NFK9U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60960815, - 48.57796729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKAA3NFK9U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60960815, - 48.57796729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKAA3NFK9U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32832409, - 48.0584202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LM09XMN1JX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.6461922, - 42.406751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XR1ACRARZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.865644, - 48.051225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVSCIPZ5TS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.865644, - 48.051225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVSCIPZ5TS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.315753, - 43.438134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCDA7HXZKI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.532914, - 47.449045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IWH1A2IBF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.275852, - 45.89023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRRQEKQHFI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.275852, - 45.89023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRRQEKQHFI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96870198, - 45.56644198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKCVU0L4PL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3706712, - 49.184013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVE4QCBHBZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3706712, - 49.184013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVE4QCBHBZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.315753, - 43.438134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCDA7HXZKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65855422, - 43.23148161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDP2V645KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32832409, - 48.0584202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LM09XMN1JX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08322656, - 49.00326919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKHMXYULO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07251158, - 45.88901564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJWVDULAW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08322656, - 49.00326919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKHMXYULO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.07803362, - 48.89969182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQ5XVNKIGI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99288892, - 48.65405506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZMUAPWE9V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99288892, - 48.65405506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZMUAPWE9V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99288892, - 48.65405506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZMUAPWE9V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.987925, - 48.972848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DX98OTN73K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.987925, - 48.972848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DX98OTN73K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.613263, - -17.6226109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBXZWVVFM5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.613263, - -17.6226109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBXZWVVFM5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.319334, - -17.7426183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSANUPSRJN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.319334, - -17.7426183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSANUPSRJN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.586486, - 44.70702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZK1N3I2E1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.586486, - 44.70702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZK1N3I2E1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89605592, - 44.42091556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBKBL8DGO5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-22:00", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89605592, - 44.42091556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBKBL8DGO5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-22:00", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07251158, - 45.88901564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJWVDULAW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.07803362, - 48.89969182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQ5XVNKIGI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67808295, - 48.08433633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIFCSLELR2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.691828, - 48.978725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H5EHPPZSMJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.056644, - 48.609489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAGYQWVCSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08322656, - 49.00326919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKHMXYULO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08322656, - 49.00326919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKHMXYULO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05903764, - 48.4648759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTZVC6LZLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05903764, - 48.4648759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTZVC6LZLM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05903764, - 48.4648759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTZVC6LZLM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.05903764, - 48.4648759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTZVC6LZLM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.55033209, - 48.83297261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFKYFA0B17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.691828, - 48.978725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H5EHPPZSMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.55033209, - 48.83297261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFKYFA0B17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.55033209, - 48.83297261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFKYFA0B17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.55033209, - 48.83297261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RFKYFA0B17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56617758, - 48.58069919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAREAOIQCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56617758, - 48.58069919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAREAOIQCM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56617758, - 48.58069919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAREAOIQCM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28624508, - 47.08027089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA7W3VU7CJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.431697, - 44.178949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A8RIVCHP5G", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.805107, - 48.513507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPZIUHAPOR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43439125, - 43.56209266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S5JH7VHBMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56976853, - 48.7744994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I7ALUF5SHC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56976853, - 48.7744994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I7ALUF5SHC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56976853, - 48.7744994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I7ALUF5SHC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30036707, - 49.18885149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X39YEQWXEA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30036707, - 49.18885149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X39YEQWXEA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.687384, - 48.589142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTQ4OOHE5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.687384, - 48.589142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTQ4OOHE5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.687384, - 48.589142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTQ4OOHE5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.687384, - 48.589142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTQ4OOHE5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.687384, - 48.589142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTQ4OOHE5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.687384, - 48.589142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTQ4OOHE5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.089515, - 49.071433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRBGH8S115", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159203, - 49.34989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPCFCO01CI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.089515, - 49.071433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRBGH8S115", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147496, - 49.083182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2ZPQBEZ5K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43439125, - 43.56209266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S5JH7VHBMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.431697, - 44.178949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A8RIVCHP5G", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11453028, - 44.81628383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGLWSBDZQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.74455721, - 43.33347765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYAJRHUDL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.74455721, - 43.33347765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYAJRHUDL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16163419, - 45.8044199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQP2PREYY5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16163419, - 45.8044199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQP2PREYY5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.061672, - 46.483018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTPOLB2LSC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.061672, - 46.483018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTPOLB2LSC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45040266, - 50.85124067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OYDVXOV7P5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066905, - 49.328758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWBKPDL4GY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066905, - 49.328758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWBKPDL4GY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066905, - 49.328758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWBKPDL4GY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159203, - 49.34989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPCFCO01CI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.155524, - 49.256228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCORODH6N5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16027775, - 49.63430989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9OMLDCVIQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16027775, - 49.63430989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9OMLDCVIQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16027775, - 49.63430989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9OMLDCVIQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16027775, - 49.63430989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9OMLDCVIQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16027775, - 49.63430989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9OMLDCVIQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.773942, - 49.523865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A5TVCKW5J5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390331, - 48.945237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6KFOZKSG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.773942, - 49.523865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A5TVCKW5J5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16027775, - 49.63430989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y9OMLDCVIQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198606, - 49.483735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRLMOTRKQ4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147496, - 49.083182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2ZPQBEZ5K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147496, - 49.083182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2ZPQBEZ5K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159369, - 49.149954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWWPMMR63R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159369, - 49.149954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWWPMMR63R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.155524, - 49.256228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCORODH6N5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390331, - 48.945237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6KFOZKSG", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390331, - 48.945237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6KFOZKSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9441, - 49.240331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B0GEOLP0UK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066905, - 49.328758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWBKPDL4GY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147496, - 49.083182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2ZPQBEZ5K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9441, - 49.240331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B0GEOLP0UK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9441, - 49.240331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B0GEOLP0UK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.155524, - 49.256228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCORODH6N5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9441, - 49.240331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B0GEOLP0UK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066905, - 49.328758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWBKPDL4GY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390331, - 48.945237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6KFOZKSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066905, - 49.328758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWBKPDL4GY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147496, - 49.083182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2ZPQBEZ5K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147496, - 49.083182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2ZPQBEZ5K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.155524, - 49.256228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCORODH6N5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390331, - 48.945237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6KFOZKSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390331, - 48.945237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6KFOZKSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11453028, - 44.81628383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGLWSBDZQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11453028, - 44.81628383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGLWSBDZQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11453028, - 44.81628383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGLWSBDZQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62993506, - 46.50183008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBFHMY0D1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62993506, - 46.50183008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBFHMY0D1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62993506, - 46.50183008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBFHMY0D1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09309044, - 48.26196268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIDCQ4E41W16R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09309044, - 48.26196268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIDCQ4E41W16R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62952191, - 46.50226949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQB3EQ7FWYJ7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62952191, - 46.50226949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQB3EQ7FWYJ7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96894493, - 42.64912753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBTYPI8YWW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58194546, - 45.29850531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJYJFR6JY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58194546, - 45.29850531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJYJFR6JY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58194546, - 45.29850531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJYJFR6JY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58194546, - 45.29850531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJYJFR6JY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89112241, - 50.33121269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIPTIDSXGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89112241, - 50.33121269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIPTIDSXGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81625874, - 45.54545139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTGFUYTSHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62952191, - 46.50226949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQB3EQ7FWYJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81625874, - 45.54545139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTGFUYTSHN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62993506, - 46.50183008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBFHMY0D1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624877, - 46.50873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHRNZU6OU4U33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62952191, - 46.50226949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQB3EQ7FWYJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 09:00-18:00", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072646, - 43.131425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSC6UVAWYO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05705, - 49.117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARZ7KBQW7E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1347, - 48.8944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PYLGWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6478, - 49.5888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYKGDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6478, - 49.5888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYKGDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6478, - 49.5888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYKGDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6478, - 49.5888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYKGDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32728216, - 49.06732506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVLLPF2MXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32728216, - 49.06732506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVLLPF2MXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42550237, - 48.2562449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWCFZHSDUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5042, - 45.3799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEDKZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5042, - 45.3799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEDKZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.027849, - 46.253891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TM6PKDLX7M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.027849, - 46.253891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TM6PKDLX7M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.667409, - 50.885682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESR34INWKW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3393309, - 44.73389129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X6DOW05MMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07374, - 43.1239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSC6UVAWYO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11577, - 48.8976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVUHMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11577, - 48.8976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVUHMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1211, - 48.8993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STEZAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.887326, - 50.071325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K3T4LY2OWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17269426, - 46.15587017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FI7ROKDWGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17269426, - 46.15587017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FI7ROKDWGQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55172496, - 43.30796149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYBK6R4NSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55172496, - 43.30796149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYBK6R4NSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55172496, - 43.30796149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYBK6R4NSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55172496, - 43.30796149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYBK6R4NSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.887326, - 50.071325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K3T4LY2OWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1347, - 48.8944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PYLGWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.74471, - 48.0833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UFUSXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.74471, - 48.0833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UFUSXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.486285, - 47.927044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVHUEWOGS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.486285, - 47.927044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVHUEWOGS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.486285, - 47.927044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDVHUEWOGS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1211, - 48.8993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STEZAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.532914, - 47.449045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IWH1A2IBF7", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07700755, - 47.35132365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAONUN3BFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07700755, - 47.35132365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FAONUN3BFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50889736, - 48.92885447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVB2J2HEHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35702758, - 43.14094926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMP18EEAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35702758, - 43.14094926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMP18EEAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35702758, - 43.14094926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMP18EEAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35702758, - 43.14094926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMP18EEAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.29586834, - 48.62320433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEKGN2NYYP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84526556, - 42.66333802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMKXTSAABQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84526556, - 42.66333802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMKXTSAABQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84526556, - 42.66333802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMKXTSAABQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84526556, - 42.66333802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMKXTSAABQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98865039, - 45.66025517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5VJA9PLOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98865039, - 45.66025517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5VJA9PLOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98865039, - 45.66025517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5VJA9PLOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98865039, - 45.66025517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5VJA9PLOF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98865039, - 45.66025517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L5VJA9PLOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45245219, - 43.61737466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTIU7I3VVW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50889736, - 48.92885447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVB2J2HEHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.997, - 42.6065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZNIDWLXDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8488895, - 47.0251425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIY0KLXO2X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.997, - 42.6065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZNIDWLXDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71373892, - 45.9858627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUO4UYLRZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71373892, - 45.9858627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUO4UYLRZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07039204, - 49.10701789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EXGSD0N3H2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 19:00-23:45,Sa-Su 00:00-23:45", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07039204, - 49.10701789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EXGSD0N3H2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 19:00-23:45,Sa-Su 00:00-23:45", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07039204, - 49.10701789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EXGSD0N3H2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 19:00-23:45,Sa-Su 00:00-23:45", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07039204, - 49.10701789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EXGSD0N3H2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 19:00-23:45,Sa-Su 00:00-23:45", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.219877, - 43.616781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J0TOR4JKAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.219877, - 43.616781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J0TOR4JKAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45245219, - 43.61737466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTIU7I3VVW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10895358, - 47.37055261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KF35TDNN0J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10895358, - 47.37055261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KF35TDNN0J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.449587, - 43.532474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GII6F3OBUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60437868, - 44.19037435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W8NSPQCMF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43806053, - 49.2490948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZEGSP1N1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43806053, - 49.2490948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZEGSP1N1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43806053, - 49.2490948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZEGSP1N1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43806053, - 49.2490948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZEGSP1N1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43806053, - 49.2490948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZEGSP1N1", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43806053, - 49.2490948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCZEGSP1N1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5312669, - 49.21197641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WG8RNRAOA1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5312669, - 49.21197641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WG8RNRAOA1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5312669, - 49.21197641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WG8RNRAOA1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65437666, - 46.40083477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWOR2WQJIQ3M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65437666, - 46.40083477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWOR2WQJIQ3M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65437666, - 46.40083477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWOR2WQJIQ3M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65437666, - 46.40083477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWOR2WQJIQ3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65437666, - 46.40083477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWOR2WQJIQ3M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60437868, - 44.19037435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W8NSPQCMF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60437868, - 44.19037435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W8NSPQCMF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60437868, - 44.19037435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W8NSPQCMF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40689934, - 44.61638549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AERRQIG8TN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.449587, - 43.532474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GII6F3OBUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61702, - 44.6615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNENEJQFNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61702, - 44.6615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNENEJQFNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40689934, - 44.61638549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AERRQIG8TN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40689934, - 44.61638549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AERRQIG8TN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40689934, - 44.61638549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AERRQIG8TN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72069789, - 50.63525212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTDGKNH6AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60437868, - 44.19037435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W8NSPQCMF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72069789, - 50.63525212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTDGKNH6AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72069789, - 50.63525212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTDGKNH6AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72069789, - 50.63525212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTDGKNH6AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72069789, - 50.63525212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTDGKNH6AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72069789, - 50.63525212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTDGKNH6AA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60437868, - 44.19037435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W8NSPQCMF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36208, - 48.9039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJDZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36208, - 48.9039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJDZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368547, - 48.903675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDQRXKN1N0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368547, - 48.903675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDQRXKN1N0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36208, - 48.9039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJDZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36208, - 48.9039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJDZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368547, - 48.903675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDQRXKN1N0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368547, - 48.903675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDQRXKN1N0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36463848, - 48.90400096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVCJPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36463848, - 48.90400096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVCJPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624, - 48.9046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSCWYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37188056, - 48.90376471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPQTMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36463848, - 48.90400096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVCJPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37188056, - 48.90376471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPQTMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624, - 48.9046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSCWYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36821393, - 48.90413143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCJWZZ6OLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624, - 48.9046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSCWYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624, - 48.9046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSCWYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36463848, - 48.90400096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVCJPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62611, - 49.0529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTZRSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62611, - 49.0529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTZRSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.868463, - 48.946306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQOI2FVJKI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.868463, - 48.946306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQOI2FVJKI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2021-11-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.868463, - 48.946306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQOI2FVJKI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.868463, - 48.946306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQOI2FVJKI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11788002, - 45.83878616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSMJ9I3RMS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:00,Mo-Su 19:00-23:00", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86508738, - 45.51496871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHN6Y2IMIA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35927, - 48.7443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTEAKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35582, - 48.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXYSYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35927, - 48.7443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTEAKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35582, - 48.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXYSYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65437666, - 46.40083477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWOR2WQJIQ3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52857245, - 48.84490787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZ5AHMP1BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52857245, - 48.84490787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZ5AHMP1BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52695959, - 46.84565242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDZHMM2BS3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52473302, - 46.84668342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJDWGUEGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52473302, - 46.84668342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJDWGUEGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52473302, - 46.84668342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJDWGUEGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.668832, - 47.809545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MHD8X0KU4L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.668832, - 47.809545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MHD8X0KU4L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.668832, - 47.809545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MHD8X0KU4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.668832, - 47.809545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MHD8X0KU4L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61780108, - 50.38016725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKAQHLZXWE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61780108, - 50.38016725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKAQHLZXWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61780108, - 50.38016725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKAQHLZXWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61780108, - 50.38016725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKAQHLZXWE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61780108, - 50.38016725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKAQHLZXWE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52695959, - 46.84565242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDZHMM2BS3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52695959, - 46.84565242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDZHMM2BS3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52695959, - 46.84565242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDZHMM2BS3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27719449, - 45.37768304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWHDONWUTE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204959, - 48.67191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0JOAC1WRD4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204959, - 48.67191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0JOAC1WRD4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.20613, - 48.671001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK018BS1Z3O4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.20613, - 48.671001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK018BS1Z3O4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204701, - 48.672099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0B6WE2A0C7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204701, - 48.672099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0B6WE2A0C7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27719449, - 45.37768304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWHDONWUTE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52695959, - 46.84565242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDZHMM2BS3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27719449, - 45.37768304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWHDONWUTE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27719449, - 45.37768304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWHDONWUTE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27719449, - 45.37768304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWHDONWUTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27719449, - 45.37768304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWHDONWUTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52473302, - 46.84668342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJDWGUEGAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.52695959, - 46.84565242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDZHMM2BS3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204701, - 48.672099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0B6WE2A0C7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38385, - 47.9146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSHMQIUI0C", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79702566, - 47.90490444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI8Y38FP1V7L9", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79702566, - 47.90490444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI8Y38FP1V7L9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96653, - 48.03724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5IARA3AQQZE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71336, - 49.50626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IU1FUKZ0FE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96653, - 48.03724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5IARA3AQQZE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96653, - 48.03724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5IARA3AQQZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71336, - 49.50626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IU1FUKZ0FE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71336, - 49.50626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IU1FUKZ0FE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38385, - 47.9146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSHMQIUI0C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38385, - 47.9146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSHMQIUI0C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79702566, - 47.90490444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI8Y38FP1V7L9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8488895, - 47.0251425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIY0KLXO2X", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8488895, - 47.0251425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIY0KLXO2X", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8488895, - 47.0251425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIY0KLXO2X", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717087, - 45.945883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKEA7ULFM6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717087, - 45.945883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKEA7ULFM6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8119235, - 46.28973074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D19TOD1FRC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.763751, - 50.308914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPZPZO41JG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87236, - 48.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITBF0WI799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343837, - 48.952699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A4ZETSZ9FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343837, - 48.952699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A4ZETSZ9FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.763751, - 50.308914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPZPZO41JG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8119235, - 46.28973074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D19TOD1FRC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.763751, - 50.308914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPZPZO41JG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.763751, - 50.308914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPZPZO41JG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27436091, - 49.8456372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDEDWPUBBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27436091, - 49.8456372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDEDWPUBBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27436091, - 49.8456372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDEDWPUBBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27436091, - 49.8456372 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDEDWPUBBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204701, - 48.672099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0B6WE2A0C7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204831, - 48.672004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0MKQP2KRJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7523946, - 46.18586958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZMEWGYXIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38644165, - 43.36181463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKZKLJ5ISV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38644165, - 43.36181463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKZKLJ5ISV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38644165, - 43.36181463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKZKLJ5ISV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84058, - 43.6979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRCBSB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84058, - 43.6979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TRCBSB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87375, - 48.8936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRWXYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43499931, - 43.28402011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7D91ZNMHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43499931, - 43.28402011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7D91ZNMHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43499931, - 43.28402011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7D91ZNMHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43499931, - 43.28402011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7D91ZNMHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38644165, - 43.36181463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKZKLJ5ISV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38644165, - 43.36181463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKZKLJ5ISV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38644165, - 43.36181463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKZKLJ5ISV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42649482, - 43.29657762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDFCGE3FAO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7523946, - 46.18586958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZMEWGYXIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02937, - 46.263818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KM8GM7ATSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02937, - 46.263818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KM8GM7ATSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02937, - 46.263818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KM8GM7ATSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02937, - 46.263818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KM8GM7ATSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42649482, - 43.29657762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDFCGE3FAO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410487, - 43.263906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFBWLWVA0T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59452267, - 45.90408668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7EP7K1IOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410487, - 43.263906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFBWLWVA0T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410487, - 43.263906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFBWLWVA0T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410487, - 43.263906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFBWLWVA0T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410487, - 43.263906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFBWLWVA0T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410487, - 43.263906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFBWLWVA0T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59452267, - 45.90408668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7EP7K1IOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204831, - 48.672004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK0MKQP2KRJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24836, - 46.18666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V29FRQK8HC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24836, - 46.18666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V29FRQK8HC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24836, - 46.18666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V29FRQK8HC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24836, - 46.18666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V29FRQK8HC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24836, - 46.18666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V29FRQK8HC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24836, - 46.18666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V29FRQK8HC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74388889, - 50.2855964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YL7CVNYH6R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2466, - 49.3318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCQGXG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09320972, - 43.91656357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCDWN9EH7O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09320972, - 43.91656357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCDWN9EH7O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09320972, - 43.91656357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCDWN9EH7O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204319, - 48.672286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK03NULU8FL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204319, - 48.672286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK03NULU8FL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204024, - 48.672451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK06Y5F130FX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204024, - 48.672451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIK06Y5F130FX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55377, - 46.2188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNRTPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55377, - 46.2188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNRTPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.25536, - 47.9017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFAGQX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70244833, - 45.26052084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7WRYXX7TU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.25536, - 47.9017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFAGQX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.464839, - 48.276894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOVDPBDHHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.464839, - 48.276894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOVDPBDHHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.464839, - 48.276894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOVDPBDHHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.464839, - 48.276894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOVDPBDHHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.24630929, - 48.7698957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2YSEV8CCC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.24630929, - 48.7698957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2YSEV8CCC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9441, - 49.240331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B0GEOLP0UK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9441, - 49.240331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B0GEOLP0UK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198606, - 49.483735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRLMOTRKQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.700513, - 47.326191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V1GZIHEXMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.37441847, - 45.31480139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBJUNGUIF2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.37441847, - 45.31480139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBJUNGUIF2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57233178, - 46.66965999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCLLB815FO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76181634, - 45.58992715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUIQPXVEI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18590507, - 45.7293155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7CVN4VCEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465253, - 46.748588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRNQPLHRUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.700513, - 47.326191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V1GZIHEXMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58450634, - 47.81175311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFKONKTICM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465253, - 46.748588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRNQPLHRUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867849, - 46.772646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHY100AFB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085731, - 46.053815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AI1UC0OYPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022531, - 47.299516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMWA3KE6RA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085731, - 46.053815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AI1UC0OYPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465253, - 46.748588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRNQPLHRUT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25706307, - 45.55116915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9DZEK2CZD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25706307, - 45.55116915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9DZEK2CZD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GG6FVWF3A4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18590507, - 45.7293155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7CVN4VCEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5M7HY9MD8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93667563, - 47.05579643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4G0UBMWRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465253, - 46.748588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRNQPLHRUT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18590507, - 45.7293155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7CVN4VCEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18590507, - 45.7293155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7CVN4VCEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76181634, - 45.58992715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUIQPXVEI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867849, - 46.772646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHY100AFB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93667563, - 47.05579643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4G0UBMWRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.286064, - 46.310614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRE24WVTIF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.346252, - 46.535982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBBL8M94QY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.346252, - 46.535982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBBL8M94QY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.346252, - 46.535982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBBL8M94QY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GG6FVWF3A4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022531, - 47.299516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMWA3KE6RA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39190104, - 46.1562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMFZKUWKMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57233178, - 46.66965999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCLLB815FO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4G0UBMWRI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4G0UBMWRI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79534207, - 46.26800784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A6P6NQCN8U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39190104, - 46.1562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMFZKUWKMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39190104, - 46.1562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMFZKUWKMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79534207, - 46.26800784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A6P6NQCN8U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022531, - 47.299516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMWA3KE6RA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39190104, - 46.1562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMFZKUWKMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.286064, - 46.310614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRE24WVTIF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.346252, - 46.535982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBBL8M94QY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25706307, - 45.55116915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9DZEK2CZD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022531, - 47.299516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMWA3KE6RA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.905458, - 46.570362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V1GZIHEXMU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.181014, - 45.776602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZJ5NXUIFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25706307, - 45.55116915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9DZEK2CZD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.346252, - 46.535982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBBL8M94QY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25706307, - 45.55116915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9DZEK2CZD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867849, - 46.772646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHY100AFB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5518, - 47.849439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NN6JD7ESLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25706307, - 45.55116915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9DZEK2CZD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.346252, - 46.535982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBBL8M94QY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.833101, - 46.165531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMJUWDE2ZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.833101, - 46.165531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMJUWDE2ZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.322374, - 46.912927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EK78LCBFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GG6FVWF3A4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.286064, - 46.310614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRE24WVTIF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.828736, - 47.187291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1YNAOAES4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356622, - 46.688777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJYKIGXR01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76181634, - 45.58992715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUIQPXVEI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79534207, - 46.26800784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A6P6NQCN8U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GG6FVWF3A4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5M7HY9MD8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291748, - 48.805764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PR1JKSCDLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41211721, - 49.18669642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUUVO0OEOL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21906119, - 49.32456957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X64IY5FMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5M7HY9MD8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.322374, - 46.912927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EK78LCBFCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.496269, - 46.76139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBJUNGUIF2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.489837, - 47.082347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQU4R0ABMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.596176, - 47.448623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LN5OWH3GTB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.489837, - 47.082347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQU4R0ABMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.833101, - 46.165531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMJUWDE2ZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.828736, - 47.187291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1YNAOAES4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.828736, - 47.187291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1YNAOAES4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.596176, - 47.448623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LN5OWH3GTB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.828736, - 47.187291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1YNAOAES4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.833101, - 46.165531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EMJUWDE2ZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.897376, - 47.496642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LARNQAMRTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.038671, - 46.015545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W6UE0JKLKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867849, - 46.772646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHY100AFB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.37441847, - 45.31480139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBJUNGUIF2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76181634, - 45.58992715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KUIQPXVEI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.286064, - 46.310614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRE24WVTIF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.37441847, - 45.31480139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBJUNGUIF2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5M7HY9MD8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.038671, - 46.015545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W6UE0JKLKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83122491, - 47.02271191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1FZ6R1VYO98", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.978245, - 46.796769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJOBYNIMYFIQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.496269, - 46.76139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBJUNGUIF2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.038671, - 46.015545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W6UE0JKLKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.038671, - 46.015545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W6UE0JKLKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39190104, - 46.1562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMFZKUWKMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5M7HY9MD8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39190104, - 46.1562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMFZKUWKMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISSUAD0218PP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40803976, - 43.53225485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O63JQJDR8C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.503546, - 43.559969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISSUAD0218PP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40803976, - 43.53225485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O63JQJDR8C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISSUAD0218PP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.503546, - 43.559969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISSUAD0218PP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40803976, - 43.53225485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O63JQJDR8C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74012718, - 43.11227984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWSUJPSJ4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.513644, - 43.651538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZVOZRKVZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03493, - 43.325232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZVOZRKVZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74012718, - 43.11227984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWSUJPSJ4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74012718, - 43.11227984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWSUJPSJ4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74012718, - 43.11227984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWSUJPSJ4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40803976, - 43.53225485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O63JQJDR8C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09272681, - 43.23713691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUBPYPEXXR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09272681, - 43.23713691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUBPYPEXXR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74012718, - 43.11227984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWSUJPSJ4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40803976, - 43.53225485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O63JQJDR8C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40803976, - 43.53225485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O63JQJDR8C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISSUAD0218PP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLISSUAD0218PP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09272681, - 43.23713691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUBPYPEXXR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09272681, - 43.23713691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUBPYPEXXR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63414781, - 43.44967101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNDZLAR6YW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74012718, - 43.11227984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWSUJPSJ4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9879523, - 48.6675565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFNM5FW7HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.56233, - 48.284034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DW28ZLLDTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.530413, - 47.862077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MARTXJJ3YQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.530413, - 47.862077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MARTXJJ3YQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.350408, - 48.384312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JKC4QHAXRL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.324557, - 47.726101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJDUQOWLBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.805107, - 48.513507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPZIUHAPOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.555006, - 48.026902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R13OWRMEIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.805107, - 48.513507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPZIUHAPOR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.764105, - 48.192361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMKFDTC3M4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.244457, - 48.777484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXWQCAZPW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9879523, - 48.6675565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFNM5FW7HS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9879523, - 48.6675565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFNM5FW7HS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9879523, - 48.6675565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFNM5FW7HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.475283, - 48.415155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SORRN2XLAU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.764105, - 48.192361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMKFDTC3M4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.237425, - 47.871485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFZHBEZJDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.56233, - 48.284034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DW28ZLLDTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.805107, - 48.513507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPZIUHAPOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.532413, - 48.386104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHGQLKGHD4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.287279, - 47.819499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAQY64MMFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.244457, - 48.777484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXWQCAZPW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.625437, - 48.66224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A818R6G62Y", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9879523, - 48.6675565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFNM5FW7HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.287279, - 47.819499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAQY64MMFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.532413, - 48.386104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHGQLKGHD4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.532413, - 48.386104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHGQLKGHD4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.324557, - 47.726101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJDUQOWLBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.287279, - 47.819499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAQY64MMFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.287279, - 47.819499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAQY64MMFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.532413, - 48.386104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHGQLKGHD4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.625437, - 48.66224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A818R6G62Y", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.350408, - 48.384312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JKC4QHAXRL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.237425, - 47.871485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFZHBEZJDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58450634, - 47.81175311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFKONKTICM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.973966, - 50.417064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWR9LBHFPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.785367, - 50.427276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XM03BDK6QH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829201, - 50.411893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TICAR3Q0OM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829201, - 50.411893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TICAR3Q0OM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54619, - 50.738085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZZQYISOQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54619, - 50.738085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZZQYISOQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54619, - 50.738085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZZQYISOQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54619, - 50.738085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZZQYISOQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304152, - 50.728754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRKFHHR17R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.886343, - 50.397656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJZA6CVZ1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666973, - 50.264485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTPSA3S6UB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666973, - 50.264485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTPSA3S6UB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829201, - 50.411893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TICAR3Q0OM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54619, - 50.738085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZZQYISOQJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54619, - 50.738085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZZQYISOQJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.886343, - 50.397656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJZA6CVZ1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829201, - 50.411893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TICAR3Q0OM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.973966, - 50.417064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWR9LBHFPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57233178, - 46.66965999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCLLB815FO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085731, - 46.053815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AI1UC0OYPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58450634, - 47.81175311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFKONKTICM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.978245, - 46.796769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJOBYNIMYFIQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83122491, - 47.02271191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1FZ6R1VYO98", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53083577, - 45.84793054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5M7HY9MD8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085731, - 46.053815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AI1UC0OYPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57233178, - 46.66965999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCLLB815FO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.785367, - 50.427276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XM03BDK6QH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253051, - 47.110213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIIHBFT9VM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58450634, - 47.81175311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFKONKTICM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79534207, - 46.26800784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A6P6NQCN8U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356622, - 46.688777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJYKIGXR01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829201, - 50.411893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TICAR3Q0OM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.823199, - 50.944437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MVRJMTFXFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.603901, - 50.696349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U31Z1HOZPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.608554, - 50.413489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FNABZHD5V0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.587546, - 50.49208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAWWXDWFLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.587546, - 50.49208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAWWXDWFLV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.587546, - 50.49208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAWWXDWFLV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.597708, - 50.403398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B22E6IS6IJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.597708, - 50.403398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B22E6IS6IJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829201, - 50.411893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TICAR3Q0OM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.582539, - 50.710478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNLNHDG2H5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.582539, - 50.710478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNLNHDG2H5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.794415, - 50.447739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA55ET3COQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.521722, - 50.4716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHAJCZDFMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.521722, - 50.4716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IHAJCZDFMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304152, - 50.728754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRKFHHR17R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304152, - 50.728754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRKFHHR17R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88672073, - 50.86272062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAKZY4U1S4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.587546, - 50.49208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAWWXDWFLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290524, - 50.273914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZVMFPZB3C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.794415, - 50.447739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA55ET3COQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.869468, - 50.93974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGEDFVTZGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.608554, - 50.413489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FNABZHD5V0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.785367, - 50.427276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XM03BDK6QH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.785367, - 50.427276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XM03BDK6QH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.823199, - 50.944437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MVRJMTFXFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.603901, - 50.696349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U31Z1HOZPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.869468, - 50.93974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGEDFVTZGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.251303, - 50.73239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFKNF0DTEA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.794415, - 50.447739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA55ET3COQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.919431, - 50.947109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLLHDQOSYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.919431, - 50.947109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLLHDQOSYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304152, - 50.728754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRKFHHR17R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290524, - 50.273914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZVMFPZB3C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.251303, - 50.73239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFKNF0DTEA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.794415, - 50.447739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XA55ET3COQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291748, - 48.805764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PR1JKSCDLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198606, - 49.483735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRLMOTRKQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80628112, - 45.57668842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDPR5VCA2O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.428335, - 45.894845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8CJCVP99U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378426, - 45.443624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTJ4Y9PL7Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80506843, - 45.34822043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFHTLR4J0P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80506843, - 45.34822043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFHTLR4J0P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40035862, - 45.80450072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CCNQFPQQIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378426, - 45.443624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTJ4Y9PL7Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.428335, - 45.894845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T8CJCVP99U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40035862, - 45.80450072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CCNQFPQQIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378426, - 45.443624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTJ4Y9PL7Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80506843, - 45.34822043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFHTLR4J0P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80506843, - 45.34822043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFHTLR4J0P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528626, - 49.098951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FINPWCYSPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77259809, - 45.60602154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADAKWI9JTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77259809, - 45.60602154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADAKWI9JTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378426, - 45.443624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTJ4Y9PL7Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.482969, - 45.672175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FI90Y2MKQN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.482969, - 45.672175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FI90Y2MKQN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.068128, - 45.609138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNSYPNWAHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.217572, - 45.523377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHKFRPJTZC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.520037, - 45.478882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQAOP9IPRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.233955, - 45.599607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AX86CBKORF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.217572, - 45.523377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHKFRPJTZC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.520037, - 45.478882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQAOP9IPRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378426, - 45.443624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTJ4Y9PL7Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80628112, - 45.57668842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDPR5VCA2O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225677, - 45.726768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOSJB7Z6S8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377159, - 48.920913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAGJ5CQBFK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513621, - 48.911787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXEZOXEAUK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873402, - 49.482105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPDD4Y5RGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467895, - 48.870591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKOJZHOQ8P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485371, - 48.884429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0HJQPVBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.429302, - 49.511588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C9NIVDRMEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333673, - 49.313813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNEXS6CBJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513621, - 48.911787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXEZOXEAUK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.561378, - 48.957485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J01CFCFFW4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.561378, - 48.957485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J01CFCFFW4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.873402, - 49.482105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPDD4Y5RGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590353, - 46.733522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBAEAPMZYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.613876, - 47.249316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUEO9FTWBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590353, - 46.733522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBAEAPMZYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590353, - 46.733522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBAEAPMZYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590353, - 46.733522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBAEAPMZYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429139, - 46.698169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNQBLW1SZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.527709, - 47.396284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1YA9QASHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402902, - 48.96203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BK88LLSEWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.429302, - 49.511588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C9NIVDRMEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485371, - 48.884429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0HJQPVBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.469992, - 49.24107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2LQBPQQEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377159, - 48.920913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAGJ5CQBFK", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467895, - 48.870591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKOJZHOQ8P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364373, - 48.966502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCRKEQNZSQ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.469992, - 49.24107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2LQBPQQEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.530189, - 48.873413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PT85VGEYSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364373, - 48.966502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCRKEQNZSQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0952, - 49.250414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDEDECYP5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.596578, - 49.307699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLSGZFNVR4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528626, - 49.098951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FINPWCYSPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.530189, - 48.873413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PT85VGEYSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0952, - 49.250414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDEDECYP5I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333673, - 49.313813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNEXS6CBJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402902, - 48.96203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BK88LLSEWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.596578, - 49.307699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLSGZFNVR4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.068128, - 45.609138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNSYPNWAHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383538, - 45.406979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXHSAGJEDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.292144, - 45.395554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FU2H3DXVPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011236, - 50.612535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T44AJWWFZ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434086, - 51.022555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIWXAZ1UQT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.841713, - 50.450328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKW1V71V7J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.887186, - 50.681882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5VAKB6YB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.841713, - 50.450328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKW1V71V7J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.101726, - 50.388448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X3JXPCEBZD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.135558, - 50.678284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4H4VQXES1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011236, - 50.612535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T44AJWWFZ5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.103388, - 50.634139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLC4PORYME", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:30-20:00", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011236, - 50.612535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T44AJWWFZ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.180632, - 50.721213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJUX8ADWL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432851, - 50.962903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J5RJLBUY0V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432851, - 50.962903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J5RJLBUY0V", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432851, - 50.962903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J5RJLBUY0V", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.180632, - 50.721213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJUX8ADWL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011236, - 50.612535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T44AJWWFZ5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434086, - 51.022555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIWXAZ1UQT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.928759, - 50.565816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWPJ7Z2ZCT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.897218, - 50.492087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VT5FXZFPHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.122936, - 50.3543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNYVFQYTMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198606, - 49.483735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRLMOTRKQ4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198606, - 49.483735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRLMOTRKQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198606, - 49.483735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRLMOTRKQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.122936, - 50.3543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNYVFQYTMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.984502, - 50.750566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YONT6QVIXV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.984502, - 50.750566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YONT6QVIXV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434086, - 51.022555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIWXAZ1UQT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.928759, - 50.565816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWPJ7Z2ZCT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.185979, - 50.673208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDVKEHAKEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.135558, - 50.678284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4H4VQXES1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.185979, - 50.673208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDVKEHAKEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434086, - 51.022555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIWXAZ1UQT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.897218, - 50.492087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VT5FXZFPHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.887186, - 50.681882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5VAKB6YB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432851, - 50.962903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J5RJLBUY0V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.135558, - 50.678284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4H4VQXES1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.292144, - 45.395554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FU2H3DXVPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120226, - 50.518645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4FAVFBZN7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.695287, - 45.256171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRB9PAWM7D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43081, - 45.567702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNCVUHJ9T2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050249, - 45.797355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU14SZGVCB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.695287, - 45.256171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRB9PAWM7D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43081, - 45.567702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNCVUHJ9T2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198164, - 45.75177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSOGXCO0T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198164, - 45.75177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSOGXCO0T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198164, - 45.75177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSOGXCO0T", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.233955, - 45.599607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AX86CBKORF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.820695, - 45.279697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1EZVRWU5Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.820695, - 45.279697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1EZVRWU5Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.198164, - 45.75177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSOGXCO0T", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383538, - 45.406979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXHSAGJEDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9354842, - 45.7838021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8E4GHPDN1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9354842, - 45.7838021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8E4GHPDN1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378426, - 45.443624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTJ4Y9PL7Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.695287, - 45.256171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRB9PAWM7D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.695287, - 45.256171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRB9PAWM7D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.103388, - 50.634139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLC4PORYME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:30-20:00", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.135558, - 50.678284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4H4VQXES1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120226, - 50.518645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S4FAVFBZN7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.101726, - 50.388448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X3JXPCEBZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.103388, - 50.634139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLC4PORYME", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:30-20:00", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.101726, - 50.388448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X3JXPCEBZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.101726, - 50.388448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X3JXPCEBZD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.103388, - 50.634139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLC4PORYME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:30-20:00", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050249, - 45.797355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU14SZGVCB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863168, - 45.725857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7EHUWAXLO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050249, - 45.797355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU14SZGVCB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050249, - 45.797355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU14SZGVCB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050249, - 45.797355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU14SZGVCB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.050249, - 45.797355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU14SZGVCB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863168, - 45.725857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K7EHUWAXLO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.527709, - 47.396284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1YA9QASHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429139, - 46.698169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNQBLW1SZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.616289, - 47.211421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2QSB9HMEI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.030542, - 43.706265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PEPRHZRXHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.020872, - 43.822381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJXNDZ3C6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.271728, - 49.145336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQSAIA8LGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.075671, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035905, - 43.41160261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035905, - 43.41160261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035905, - 43.41160261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.91177051, - 44.23420742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNLOUT8QPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035905, - 43.41160261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.531168, - 44.722705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVQK2HM8GQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260843, - 44.543644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAM8YTTW3I", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260843, - 44.543644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAM8YTTW3I", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.930379, - 45.297541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUYZVQKVQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15518, - 44.6395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EK5YHMKEAO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.693424, - 43.384863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N6BRENDZBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.693424, - 43.384863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N6BRENDZBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.651096, - 43.369226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J0FQWYCSH1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.651096, - 43.369226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J0FQWYCSH1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672947, - 44.859769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D0AIJIWGHD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.391725, - 43.566937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHNKRRPQNR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423285, - 43.281584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENUDY0G4GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423285, - 43.281584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENUDY0G4GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17951425, - 44.0698271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXLUDBXRWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66337, - 43.85402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHNKRRPQNR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.082335, - 43.243236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D0AIJIWGHD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.101268, - 44.568995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHNKRRPQNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978897, - 43.499238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWGNCGZ3CU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17951425, - 44.0698271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXLUDBXRWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978897, - 43.499238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWGNCGZ3CU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177948, - 44.069971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D0AIJIWGHD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978897, - 43.499238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWGNCGZ3CU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.101268, - 44.568995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHNKRRPQNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15518, - 44.6395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D0AIJIWGHD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.020872, - 43.822381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJXNDZ3C6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614337, - 43.179896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFBAAFS12E", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.030542, - 43.706265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PEPRHZRXHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.636316, - 44.26687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHNKRRPQNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260843, - 44.543644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAM8YTTW3I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06582016, - 44.58409469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JOZZJYCYP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06582016, - 44.58409469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JOZZJYCYP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06582016, - 44.58409469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JOZZJYCYP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06582016, - 44.58409469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JOZZJYCYP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614337, - 43.179896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFBAAFS12E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.967053, - 44.490287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSIC9LD3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.967053, - 44.490287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSIC9LD3KI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.930379, - 45.297541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUYZVQKVQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.563163, - 48.657618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L77RJKJRRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61739, - 43.380502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1G0Y8XBHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06582016, - 44.58409469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JOZZJYCYP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06582016, - 44.58409469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JOZZJYCYP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672947, - 44.859769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1EYROTLX1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672947, - 44.859769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1EYROTLX1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.260843, - 44.543644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAM8YTTW3I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61739, - 43.380502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1G0Y8XBHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614337, - 43.179896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFBAAFS12E", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15518, - 44.6395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EK5YHMKEAO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.614337, - 43.179896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFBAAFS12E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.531168, - 44.722705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVQK2HM8GQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.510859, - 44.844837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMWW8BBCHFQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.523894, - 44.147449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EHNKRRPQNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978897, - 43.499238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWGNCGZ3CU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.638397, - 47.047134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R9HLO5VJ24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.848355, - 46.777557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWZHDVEEYF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.848355, - 46.777557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWZHDVEEYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.848355, - 46.777557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWZHDVEEYF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.827943, - 46.602341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRCZZOSUOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.435022, - 46.647014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDYRGJQNWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.827943, - 46.602341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRCZZOSUOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.776248, - 46.513867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTOS6OHD33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.776248, - 46.513867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTOS6OHD33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.848355, - 46.777557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWZHDVEEYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.776248, - 46.513867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTOS6OHD33", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502432, - 47.445137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZREBJTTI3B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.435022, - 46.647014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDYRGJQNWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502432, - 47.445137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZREBJTTI3B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.616289, - 47.211421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2QSB9HMEI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.613876, - 47.249316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OL2TN2UB3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.156162, - 47.241382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBNGT0AA3J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.776248, - 46.513867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTOS6OHD33", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.591795, - 47.197913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIGOKDUUYZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.527865, - 47.242816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZAJKTPA3O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28237, - 47.258777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQX0OZTVMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.613876, - 47.249316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUEO9FTWBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.591795, - 47.197913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIGOKDUUYZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.527865, - 47.242816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZAJKTPA3O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.527709, - 47.396284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1YA9QASHE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.527709, - 47.396284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1YA9QASHE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.591795, - 47.197913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIGOKDUUYZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.156162, - 47.241382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBNGT0AA3J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.591795, - 47.197913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIGOKDUUYZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.208344, - 47.290441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VHJJAQQP0F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.616289, - 47.211421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2QSB9HMEI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978897, - 43.499238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWGNCGZ3CU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.638397, - 47.047134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R9HLO5VJ24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.075671, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423452, - 43.281753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENUDY0G4GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43914, - 43.326358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEXWDVZFWO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.075671, - 43.637548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978897, - 43.499238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWGNCGZ3CU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.91177051, - 44.23420742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNLOUT8QPN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63247, - 43.666494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D8WHXLJJOC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035905, - 43.41160261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQUDPLPZYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.037544, - 49.019432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQSAIA8LGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501223, - 43.508707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQSAIA8LGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.91177051, - 44.23420742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNLOUT8QPN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.91177051, - 44.23420742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNLOUT8QPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63247, - 43.666494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D8WHXLJJOC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423285, - 43.281584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENUDY0G4GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423285, - 43.281584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENUDY0G4GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423452, - 43.281753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENUDY0G4GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501223, - 43.508707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQSAIA8LGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43914, - 43.326358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEXWDVZFWO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.749697, - 46.642619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OL2TN2UB3M", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590353, - 46.733522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBAEAPMZYM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.616289, - 47.211421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2QSB9HMEI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590353, - 46.733522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBAEAPMZYM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.208344, - 47.290441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VHJJAQQP0F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.749697, - 46.642619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OL2TN2UB3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.023455, - 46.874699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HOYWIHBH4H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.613876, - 47.249316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OL2TN2UB3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43914, - 43.326358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEXWDVZFWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.749697, - 46.642619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OL2TN2UB3M", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.613876, - 47.249316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OL2TN2UB3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.023455, - 46.874699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HOYWIHBH4H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5948279, - 44.8652091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4APLQXSCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43914, - 43.326358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEXWDVZFWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5948279, - 44.8652091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4APLQXSCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56626, - 48.5611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBBJAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43221, - 48.5356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFJPLY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40364, - 48.5522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YUKUFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13402839, - 49.49892174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHMXW9N8BO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13402839, - 49.49892174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHMXW9N8BO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13402839, - 49.49892174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHMXW9N8BO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13402839, - 49.49892174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHMXW9N8BO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13402839, - 49.49892174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHMXW9N8BO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46760856, - 49.09464425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDDDCJBIC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.437717, - 42.623928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HELMIXFOE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.437717, - 42.623928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HELMIXFOE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.437717, - 42.623928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HELMIXFOE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.437717, - 42.623928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HELMIXFOE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42584685, - 47.33325318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZ5WPWTVHV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.254477, - 45.5423515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGHWPZSVYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280159, - 49.165289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0DBRWYOEI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280159, - 49.165289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0DBRWYOEI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32237, - 46.19182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBDZ4WIOAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46760856, - 49.09464425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDDDCJBIC9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46760856, - 49.09464425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDDDCJBIC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46760856, - 49.09464425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDDDCJBIC9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04282596, - 48.72047793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVGTCZQU9B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74004948, - 50.31345769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLFLCWKQQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74004948, - 50.31345769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLFLCWKQQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74004948, - 50.31345769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLFLCWKQQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74004948, - 50.31345769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLFLCWKQQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31362079, - 48.92645399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61512866, - 48.57647776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMQ6WNJ7DC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04282596, - 48.72047793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVGTCZQU9B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04282596, - 48.72047793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVGTCZQU9B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589431, - 49.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSWHWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.589431, - 49.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSWHWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61512866, - 48.57647776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMQ6WNJ7DC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61512866, - 48.57647776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMQ6WNJ7DC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61512866, - 48.57647776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMQ6WNJ7DC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31362079, - 48.92645399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61512866, - 48.57647776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMQ6WNJ7DC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61512866, - 48.57647776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GMQ6WNJ7DC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31362079, - 48.92645399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31362079, - 48.92645399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31362079, - 48.92645399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31362079, - 48.92645399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.598411, - 48.642427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRSEKPOETD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.598411, - 48.642427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRSEKPOETD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56965905, - 48.64891781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXHQKBCDP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30936042, - 49.18389491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTXNJV4UMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.169949, - 49.216964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJPBSARJUV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.169949, - 49.216964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJPBSARJUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0444334, - 48.72012048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXZV8DAA0C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225379, - 43.944127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAPOEUSRPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.062039, - 45.57593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKA7W3JCGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.062039, - 45.57593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKA7W3JCGW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.82486, - 41.9234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B2HE7Y57KD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.82486, - 41.9234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B2HE7Y57KD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04527063, - 48.72036468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEIECWCICF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04527063, - 48.72036468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EEIECWCICF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225379, - 43.944127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAPOEUSRPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0444334, - 48.72012048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXZV8DAA0C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1586584, - 42.3161558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WIUMZLWTQX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1586584, - 42.3161558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WIUMZLWTQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80107908, - 48.79664144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1KC483SJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80107908, - 48.79664144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1KC483SJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80107908, - 48.79664144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1KC483SJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80107908, - 48.79664144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1KC483SJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31249851, - 49.18210664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZACLSUBH9M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30936042, - 49.18389491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTXNJV4UMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56965905, - 48.64891781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXHQKBCDP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30936042, - 49.18389491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTXNJV4UMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.695758, - 48.954713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEBBF2YBFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.695758, - 48.954713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEBBF2YBFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.695758, - 48.954713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEBBF2YBFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.073343, - 48.739235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAWYATQLP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.073343, - 48.739235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAWYATQLP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23367, - 43.5136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BIJOFRFG1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23367, - 43.5136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BIJOFRFG1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.006119, - 46.137144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UFKNQYMEB6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.006119, - 46.137144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UFKNQYMEB6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7390536, - 44.40577777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJZ0SC4ZZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7390536, - 44.40577777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJZ0SC4ZZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56965905, - 48.64891781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXHQKBCDP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56965905, - 48.64891781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXHQKBCDP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56965905, - 48.64891781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXHQKBCDP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56965905, - 48.64891781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXHQKBCDP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.695758, - 48.954713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEBBF2YBFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.824337, - 43.100862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYM3I892BB2I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.824337, - 43.100862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYM3I892BB2I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.078972, - 43.63446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SI6AYMQRSF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30936042, - 49.18389491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTXNJV4UMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.79055845, - 41.93261788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NR1CEVICM8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.79055845, - 41.93261788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NR1CEVICM8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99637, - 44.166397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGHU4NZ1E1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001487, - 43.514118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWS9EZWLMB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.001487, - 43.514118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWS9EZWLMB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.078972, - 43.63446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SI6AYMQRSF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.824337, - 43.100862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHYM3I892BB2I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1433, - 45.7588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCUFNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1433, - 45.7588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCUFNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.88983494, - 42.61057734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1FDA2VWZ8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.88983494, - 42.61057734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H1FDA2VWZ8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.441054, - 42.595654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J7HVU7TKDJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.441054, - 42.595654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J7HVU7TKDJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52939, - 48.5652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPCHZV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34418, - 44.0165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MONTABANNORD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13775, - 44.257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Lauzertemair", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13775, - 44.257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Lauzertemair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.26419, - 43.9241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montbartgar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.28907, - 44.0114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montbetonmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.26419, - 43.9241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montbartgar", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21719, - 43.8016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "aucamtoul", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19435, - 43.9861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ABVXRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19435, - 43.9861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ABVXRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76829, - 43.9365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Gramontcim", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21719, - 43.8016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "aucamtoul", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76829, - 43.9365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Gramontcim", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85681, - 44.2662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "parisotcafe", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85681, - 44.2662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "parisotcafe", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27172, - 43.9124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montbartmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21728, - 44.0343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lavildieut", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55389, - 44.166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "monteils", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55389, - 44.166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "monteils", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080079, - 45.777011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UW81KMON2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35648, - 44.016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WEEQKT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 00:00-23:59,Su 00:00-23:59,Fr 00:00-18:00,Sa 15:00-00:00", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35648, - 44.016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WEEQKT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 00:00-23:59,Su 00:00-23:59,Fr 00:00-18:00,Sa 15:00-00:00", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43645, - 43.8904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYKWNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53388, - 44.071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Negrepelisse", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53388, - 44.071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Negrepelisse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.934072, - 44.0996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pommevic", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52286, - 44.0762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWWSHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46289, - 44.0498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWWAKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52286, - 44.0762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWWSHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.365982697, - 44.01496349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Montaubaned", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3659827, - 44.01496349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Montaubaned", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35255, - 44.0261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montaubanroger", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34416, - 44.0238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montaubandr", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35255, - 44.0261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montaubanroger", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34418, - 44.0165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MONTABANNORD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6183, - 44.077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Montricoux", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27172, - 43.9124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montbartmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.92209, - 44.1975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montjoifetes", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08389, - 43.9314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMVNFH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.28907, - 44.0114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montbetonmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.84019, - 43.967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDVNFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95683, - 44.2619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bourgdevisa", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66197, - 44.0556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bruniquel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1063, - 44.0384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "chateau", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66197, - 44.0556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bruniquel", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4493, - 44.0922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "albias", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4493, - 44.0922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "albias", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99949, - 44.0194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENXVSY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04943, - 44.2729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNYVZB", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04943, - 44.2729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNYVZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99949, - 44.0194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENXVSY", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.89291, - 44.1574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVHDDR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81618, - 44.1103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNENFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21728, - 44.0343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lavildieut", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1353, - 43.8973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEEYXZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.84019, - 43.967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDVNFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24075, - 44.0886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mauza", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95683, - 44.2619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bourgdevisa", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1063, - 44.0384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "chateau", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.92209, - 44.1975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montjoifetes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.365778, - 43.916864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOWAWH8MMK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.365778, - 43.916864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOWAWH8MMK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5339, - 44.1621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "caussadegare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5339, - 44.1621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "caussadegare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10945, - 44.0399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "capucins", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.10945, - 44.0399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "capucins", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24075, - 44.0886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mauza", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36766, - 43.9437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "corbarieu", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.155, - 44.1864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "durfort", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.155, - 44.1864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "durfort", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76934, - 44.0918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "dunes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36766, - 43.9437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "corbarieu", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.769343, - 44.0918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "dunes", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43645, - 43.8904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYKWNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6183, - 44.077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Montricoux", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46289, - 44.0498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWWAKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34938, - 44.0909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHRGVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36016, - 44.0242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEMVUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17001, - 43.9423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDZMJF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97333, - 44.0914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNRKMK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35363, - 44.0197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMQAZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35363, - 44.0197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMQAZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7517, - 44.1527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRAGJQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53981, - 44.1626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KMNJNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53609, - 44.0892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKYSEG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30265, - 43.8271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EBTDSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22428, - 43.9138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SADYAZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20252, - 44.2267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKXZTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53981, - 44.1626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KMNJNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37541, - 44.0791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKHQQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37541, - 44.0791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKHQQM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53609, - 44.0892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKYSEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08605, - 44.1034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZTURH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08605, - 44.1034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZTURH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36016, - 44.0242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEMVUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116768, - 50.579123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MY72KDYCBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080079, - 45.777011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UW81KMON2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080079, - 45.777011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UW81KMON2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080079, - 45.777011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UW81KMON2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116768, - 50.579123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MY72KDYCBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116768, - 50.579123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MY72KDYCBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116768, - 50.579123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MY72KDYCBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116768, - 50.579123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MY72KDYCBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02026, - 44.3406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUMFHQ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116768, - 50.579123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MY72KDYCBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08815, - 44.3308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EDJWMR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02026, - 44.3406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUMFHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08815, - 44.3308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EDJWMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.90065, - 44.069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZXQHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.90065, - 44.069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZXQHP", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30265, - 43.8271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EBTDSH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34938, - 44.0909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHRGVC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24118, - 44.1274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Lafrancaise", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22428, - 43.9138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SADYAZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35197, - 44.016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montaubanto", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34416, - 44.0238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montaubandr", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35197, - 44.016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "montaubanto", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58615, - 43.9654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "monclar", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.58615, - 43.9654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "monclar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.854061, - 44.1133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "golfech", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29594, - 43.8269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "grisolles", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.85406, - 44.1133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "golfech", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.957942, - 43.825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "faudoas", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95794, - 43.825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "faudoas", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29594, - 43.8269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "grisolles", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08389, - 43.9314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMVNFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.820325, - 44.124733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lamagistere", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.820325, - 44.124733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lamagistere", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24118, - 44.1274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Lafrancaise", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24065, - 43.8921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "monbequito", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08475, - 44.1002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "moissac", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08475, - 44.1002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "moissac", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41975, - 44.1449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJGGHJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47746, - 44.2403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUMQRW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20252, - 44.2267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKXZTU", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.44965, - 44.0079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADXTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7517, - 44.1527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRAGJQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17001, - 43.9423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDZMJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47746, - 44.2403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUMQRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08375, - 44.106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DUJPRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36029, - 44.1895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "molieres", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08375, - 44.106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DUJPRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.44965, - 44.0079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADXTQ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97333, - 44.0914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GNRKMK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41975, - 44.1449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJGGHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36029, - 44.1895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "molieres", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24065, - 43.8921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "monbequito", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.812752, - 48.897855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SO7YFPBWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11751839, - 45.8038204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSVJXFFR02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11751839, - 45.8038204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSVJXFFR02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418169, - 48.850197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIWFEJLLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00898542, - 43.58312267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHTEZ3S19A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00898542, - 43.58312267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHTEZ3S19A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66541009, - 44.85796028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQLLJPVXCO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66541009, - 44.85796028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQLLJPVXCO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29175456, - 43.70535597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGNJTREMMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29175456, - 43.70535597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGNJTREMMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39833236, - 48.89512837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IWWUMCVSIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39833236, - 48.89512837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IWWUMCVSIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66234705, - 44.79974717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMDA7DOBMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66234705, - 44.79974717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMDA7DOBMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36010778, - 48.75808079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XG3TDDGOMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36010778, - 48.75808079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XG3TDDGOMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20301175, - 48.84189987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZTNSXMBHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39307777, - 43.26494069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLCGOXFVYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39307777, - 43.26494069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLCGOXFVYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418169, - 48.850197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIWFEJLLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418169, - 48.850197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIWFEJLLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16736482, - 48.15411228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IEKST5G1ZL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56279373, - 44.77185819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IG8XKOL1LY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79997695, - 45.78016222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLLMFZXIXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79997695, - 45.78016222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLLMFZXIXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79997695, - 45.78016222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLLMFZXIXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877665, - 45.810311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHP7YQXTW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877665, - 45.810311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHP7YQXTW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877665, - 45.810311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHP7YQXTW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854377, - 45.718486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9G0X0SWES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854377, - 45.718486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9G0X0SWES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854377, - 45.718486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9G0X0SWES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854377, - 45.718486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9G0X0SWES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.854377, - 45.718486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9G0X0SWES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9332695, - 48.75836017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWDOP47ZNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9332695, - 48.75836017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWDOP47ZNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.57193491, - 44.80363171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUBXMBZUNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56279373, - 44.77185819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IG8XKOL1LY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39307777, - 43.26494069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLCGOXFVYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39307777, - 43.26494069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLCGOXFVYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39307777, - 43.26494069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLCGOXFVYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39307777, - 43.26494069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLCGOXFVYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84652657, - 46.0010407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNIMTITM2R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92995154, - 45.89566837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZ2ITISA9Y", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92995154, - 45.89566837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZ2ITISA9Y", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21538, - 48.9918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLLYWL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21538, - 48.9918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLLYWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7392731, - 47.89040974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2PRGCPO0G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7392731, - 47.89040974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2PRGCPO0G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84149, - 48.4065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLGWEW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84149, - 48.4065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLGWEW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.632473, - 50.18824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZ7U5AZUP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.632473, - 50.18824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AZ7U5AZUP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53604, - 45.118707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKXKTUYHMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53604, - 45.118707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKXKTUYHMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0468139, - 44.51054854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLMSNVNT8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0468139, - 44.51054854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLMSNVNT8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95391, - 45.92802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G6UP3TUUTZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84652657, - 46.0010407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNIMTITM2R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90296, - 46.00341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMPLJPJZBZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.69769922, - 47.33501281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRD9E7Z4IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90296, - 46.00341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMPLJPJZBZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99999768, - 48.77036487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYGATUARH8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99999768, - 48.77036487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYGATUARH8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14079976, - 48.79469299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCDNW73QHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14079976, - 48.79469299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCDNW73QHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95391, - 45.92802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G6UP3TUUTZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95391, - 45.92802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G6UP3TUUTZ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79997695, - 45.78016222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLLMFZXIXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512023, - 44.879618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJWUMZACZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512023, - 44.879618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJWUMZACZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34122195, - 49.20863663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFVT9N4ES5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01650096, - 50.61827989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJ4XH5K9DO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.009592, - 50.61748344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEKE1PI8DM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.58479675, - 43.28824919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ILZU0QWCER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23698, - 48.8313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HI8CYLTPBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46807, - 48.4143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NTGG7P8XLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46807, - 48.4143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NTGG7P8XLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61628505, - 44.89138691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTD24GRLDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34122195, - 49.20863663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFVT9N4ES5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01650096, - 50.61827989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJ4XH5K9DO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014157, - 50.615103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJFZVVGX8O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014157, - 50.615103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJFZVVGX8O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87378, - 48.0024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSEYDG", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.439726, - 42.599199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCARLUQ2VL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.775508, - -17.4800938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZE3EDDITHO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.775508, - -17.4800938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZE3EDDITHO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87378, - 48.0024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSEYDG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.88569, - 48.0062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAGQFS", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87378, - 48.0024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSEYDG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87378, - 48.0024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSEYDG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014157, - 50.615103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJFZVVGX8O", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01599692, - 50.61302098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUZEQNBUU0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01599692, - 50.61302098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUZEQNBUU0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.009592, - 50.61748344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEKE1PI8DM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.009592, - 50.61748344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEKE1PI8DM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01599692, - 50.61302098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUZEQNBUU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01650096, - 50.61827989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJ4XH5K9DO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34122195, - 49.20863663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFVT9N4ES5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34122195, - 49.20863663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFVT9N4ES5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512023, - 44.879618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJWUMZACZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34122195, - 49.20863663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFVT9N4ES5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253808, - 48.832043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKDY8UTUDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48255792, - 43.29013381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPD0Y4AZML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48255792, - 43.29013381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPD0Y4AZML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48255792, - 43.29013381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPD0Y4AZML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48255792, - 43.29013381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPD0Y4AZML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48255792, - 43.29013381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPD0Y4AZML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48255792, - 43.29013381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPD0Y4AZML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17486406, - 47.98001177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YRPLK8JSQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17486406, - 47.98001177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YRPLK8JSQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17486406, - 47.98001177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YRPLK8JSQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17486406, - 47.98001177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YRPLK8JSQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29817629, - 48.89450073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SW0I6KKZAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29817629, - 48.89450073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SW0I6KKZAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512023, - 44.879618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJWUMZACZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512023, - 44.879618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJWUMZACZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.951344, - 43.637547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSN8XCGMXJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.951344, - 43.637547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSN8XCGMXJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44541826, - 43.44886874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S6ZRQZX1D5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273682, - 48.902848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS9LF6WZTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.17023421, - 43.65808451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WU01S8EWX9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.17023421, - 43.65808451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WU01S8EWX9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.17023421, - 43.65808451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WU01S8EWX9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96296, - 43.549931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYZ1I5HC8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96296, - 43.549931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYZ1I5HC8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40912, - 48.8192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E48M4FWGEO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273682, - 48.902848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS9LF6WZTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44541826, - 43.44886874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S6ZRQZX1D5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33105722, - 48.75868906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQUMZ7QBK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33105722, - 48.75868906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQUMZ7QBK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33105722, - 48.75868906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQUMZ7QBK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33105722, - 48.75868906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQUMZ7QBK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33105722, - 48.75868906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQUMZ7QBK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33105722, - 48.75868906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQUMZ7QBK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0468139, - 44.51054854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLMSNVNT8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0468139, - 44.51054854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLMSNVNT8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0468139, - 44.51054854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLMSNVNT8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46104696, - 43.536261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRKGJ6QXDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16726763, - 49.23699697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTUB5LCGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1696937, - 49.23708488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXQCI6D93G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16726763, - 49.23699697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTUB5LCGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1696937, - 49.23708488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXQCI6D93G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16874509, - 49.23790821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJ5HXBD2S2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16709009, - 49.23853082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZP2XBRNY7Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.141376, - 49.232838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UH6ISR4DAZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1152724, - 49.21443665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKA62CFRIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1152724, - 49.21443665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKA62CFRIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.141376, - 49.232838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UH6ISR4DAZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12425, - 49.222496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQWWODAWMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12425, - 49.222496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQWWODAWMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46579688, - 43.54076627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NEI1A4E2LR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46104696, - 43.536261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRKGJ6QXDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46579688, - 43.54076627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NEI1A4E2LR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16874509, - 49.23790821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KJ5HXBD2S2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16558187, - 49.23279051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODZG0S8OHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16709009, - 49.23853082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZP2XBRNY7Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.63364, - 48.9528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSGDN5TMKB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.660558, - -20.961651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.366612, - -21.265831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUE8MYS7P9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65833, - 48.9341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BZGNBR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66379112, - 48.93055017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFFCKZAJSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65833, - 48.9341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BZGNBR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.63364, - 48.9528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSGDN5TMKB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.63364, - 48.9528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSGDN5TMKB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16558187, - 49.23279051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ODZG0S8OHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64142021, - 48.95131715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWSE1GJQYS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61174961, - 48.94217109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIY9LSWFOF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.63364, - 48.9528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSGDN5TMKB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64142021, - 48.95131715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWSE1GJQYS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61174961, - 48.94217109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIY9LSWFOF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66379112, - 48.93055017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFFCKZAJSW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46579688, - 43.54076627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NEI1A4E2LR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46579688, - 43.54076627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NEI1A4E2LR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.366612, - -21.265831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUE8MYS7P9", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.657465, - 41.908496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N0JPXHXQ78", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.657465, - 41.908496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N0JPXHXQ78", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.353706, - 48.075534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEAQE62RQJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.353706, - 48.075534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEAQE62RQJ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.353706, - 48.075534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEAQE62RQJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16736482, - 48.15411228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IEKST5G1ZL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.657465, - 41.908496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N0JPXHXQ78", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.657465, - 41.908496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N0JPXHXQ78", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.288081, - -21.168965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIVJ6JIHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46104696, - 43.536261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRKGJ6QXDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39586, - 49.0128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLRMIEOLWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46104696, - 43.536261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRKGJ6QXDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46521082, - 43.5353684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZEY4Y1GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.00658, - 49.19142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4EZXFLS0M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.00658, - 49.19142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4EZXFLS0M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39586, - 49.0128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLRMIEOLWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.366612, - -21.265831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUE8MYS7P9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0468139, - 44.51054854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLLMSNVNT8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273899, - 49.855845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AFRSGAL53C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Tu 13:30-17:30,We-Fr 13:00-17:30", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1289093, - 45.76876531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMYYKKNR3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.86641287, - 50.09835705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ONVUHSIC32", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.86641287, - 50.09835705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ONVUHSIC32", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269431, - 49.88548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJMEQHEFAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269431, - 49.88548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJMEQHEFAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269431, - 49.88548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJMEQHEFAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269431, - 49.88548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJMEQHEFAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61115417, - 45.72263008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCIFDITPA3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61115417, - 45.72263008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCIFDITPA3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94949981, - 45.55631539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAUVNWVOHL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94949981, - 45.55631539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAUVNWVOHL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94949981, - 45.55631539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAUVNWVOHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94949981, - 45.55631539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAUVNWVOHL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10311, - 47.2713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKLPHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10311, - 47.2713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKLPHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.637342, - 48.130888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP5DRUW85N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.637342, - 48.130888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP5DRUW85N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.637342, - 48.130888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP5DRUW85N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.870892, - 49.433153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIA7NV5H5IHN2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.68480401, - 43.97449468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXKSVK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.68480401, - 43.97449468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXKSVK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5016092, - 45.10077504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTQSBOQOG8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5016092, - 45.10077504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTQSBOQOG8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06361322, - 43.93415882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BZR3NP5DYR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06361322, - 43.93415882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BZR3NP5DYR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.870892, - 49.433153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIA7NV5H5IHN2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.637342, - 48.130888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP5DRUW85N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11311, - 45.1445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QP2QGHOLTL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11311, - 45.1445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QP2QGHOLTL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.54689932, - 43.25016021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PURIAGXR0E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.54689932, - 43.25016021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PURIAGXR0E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60896065, - 43.42914778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ERYMURP2DU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60896065, - 43.42914778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ERYMURP2DU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273899, - 49.855845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AFRSGAL53C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Tu 13:30-17:30,We-Fr 13:00-17:30", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273899, - 49.855845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AFRSGAL53C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Tu 13:30-17:30,We-Fr 13:00-17:30", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47474772, - -21.3225547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QIGUDGQUCV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273899, - 49.855845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AFRSGAL53C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Tu 13:30-17:30,We-Fr 13:00-17:30", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46983122, - -21.3170725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJPOGWDW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46983122, - -21.3170725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJPOGWDW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46983122, - -21.3170725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJPOGWDW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46983122, - -21.3170725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJPOGWDW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.660558, - -20.961651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.660558, - -20.961651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.39766347, - -21.2820316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDIWE44BBM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.39766347, - -21.2820316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDIWE44BBM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.660558, - -20.961651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47474772, - -21.3225547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QIGUDGQUCV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.877324, - 43.585564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTRLOAXURL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.08552, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VHBVTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.08552, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VHBVTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30356, - 47.955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECHCTB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30356, - 47.955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECHCTB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30356, - 47.955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECHCTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30356, - 47.955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECHCTB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.877324, - 43.585564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTRLOAXURL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.877324, - 43.585564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTRLOAXURL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.63067564, - -21.1329182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FE7WITDLPX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.366612, - -21.265831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUE8MYS7P9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.63067564, - -21.1329182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FE7WITDLPX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19525, - 44.0841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUYNGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11143, - 44.0404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNJXRX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88195, - 44.1801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWCMEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.498079, - 47.978213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFIJQKRTJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.443498, - 48.108046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DVULJFPHTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.611208, - 48.451171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPLFZRRCH2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.101195, - 48.329628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGAGDZM0DN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.031631, - 48.311025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F6SJHLNDHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.104369, - 48.31798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYOCOK9B3F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.101094, - 48.329641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLN2PSDDZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4033642, - 48.0404528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWRWARYFKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7392818, - 48.3318444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LX4TJ9LIGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.332113, - 48.364012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AW2Y62ZANM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0665713, - 48.5411282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P0XP87AAJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2163563, - 48.1705744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LOQVFXXZ4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0284165, - 48.2861626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJGA8L3JV7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0980575, - 48.3143585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q60WEBZNBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.968203, - 48.568551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P4F3QRFJ1V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8726956, - 48.2785931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NLRCCHATCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.922544, - 48.493274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1F8WRHMWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395872, - 48.053815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPNHU2ZDUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.502292, - 48.064159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFTFKLBGGV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.364188, - 47.992499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGET3T8P8P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.017202, - 48.142109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UCV3A9QN03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.194289, - 48.531443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUS0N5LCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.52755, - 48.391572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICAF2FYXD8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06958, - 48.312045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FT7GQAID6I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.577552, - 48.550965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F3LFNNOE3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3851649, - 48.5015677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RIG9LCTQGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386689, - 48.238867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UATAXSIP73", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42743, - 48.028544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2HGHKHSLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.908456, - 48.042697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R2QWWUUNL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5111747, - 48.4935616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S5GFRFHWSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2988, - 48.238953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZLM3MS4GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246403, - 48.166854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCLUISOFLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702219, - 48.236231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCIKXNCWR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035952, - 48.129995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZQRL62BMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.302821, - 48.142869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WX2E9X4IMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43476989, - 48.5110323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FIFWQ1FUV1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110207, - 48.235708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E3LX6DF0I4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069758, - 48.276579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHNPHFUR1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.706075, - 48.233498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRX5I5HMT3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06433811, - 48.25635205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTF6ZJQHLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.04579, - 48.278961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9MXJNYNEM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37313472, - 48.11517825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZXY6YXQKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1623023, - 48.2884229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MN2IP3OV9A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12797109, - 48.22545366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TYTYI3MTEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1623023, - 48.2884229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MN2IP3OV9A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37313472, - 48.11517825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZXY6YXQKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.068873, - 48.298083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CI80EV2QJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37420322, - 48.11391691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZTTFA557P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37420322, - 48.11391691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZTTFA557P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.434096, - 47.803967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHYAW6LFGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.379166, - 47.91356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JMO7A9PAVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.133981, - 48.110928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIVDIW60ET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.005376, - 47.950708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX0C74ZEDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.005376, - 47.950708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX0C74ZEDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.01989401, - 48.32645419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGU6AL9UI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.01989401, - 48.32645419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGU6AL9UI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89093336, - 48.509824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCGDKEJF4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07617181, - 48.3027356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P5KHA01Q5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.022728, - 48.333103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKPUUNPHL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.708077, - 48.233992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXZBMR0ZO1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.776899, - 48.198718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIFFRKY5XV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.125956, - 48.332553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O8L0SVN1YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.372186, - 48.121911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGEEE64TSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.668466, - 48.23801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYCA2CSWBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07617181, - 48.3027356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P5KHA01Q5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89093336, - 48.509824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCGDKEJF4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21452042, - 48.29891165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWJ3AW8XB5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.068873, - 48.298083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CI80EV2QJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0761, - 48.302682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JX3WYHQ0GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0761, - 48.302682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JX3WYHQ0GZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21452042, - 48.29891165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWJ3AW8XB5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06433811, - 48.25635205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTF6ZJQHLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526286, - 48.348072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O67PC5Z8LO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.535224, - 48.348173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3BRA1Y7LX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.335461, - 48.301693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X98XY5WWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.626185, - 48.548185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZWWQPXHOM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05667, - 48.29276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2FWMEF7HF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.50281, - 48.493278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBVMTPZMH6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.180425, - 48.311709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJEVUUE5V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.103553, - 48.016814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAI6K956YE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.101094, - 48.329641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLN2PSDDZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.101195, - 48.329628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGAGDZM0DN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.611208, - 48.451171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPLFZRRCH2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.104369, - 48.31798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYOCOK9B3F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.031631, - 48.311025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F6SJHLNDHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5111747, - 48.4935616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S5GFRFHWSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386689, - 48.238867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UATAXSIP73", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.364188, - 47.992499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGET3T8P8P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.908456, - 48.042697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R2QWWUUNL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.498079, - 47.978213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFIJQKRTJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.673175, - 48.484073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HAKGNH2QU1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.620832, - 48.380433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHE4S0TLNK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069551, - 48.31203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8VPGPD5FN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.030422, - 48.335985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKGXP4CHU0PTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.730059, - 48.513979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOLRFLNSDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.730059, - 48.513979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOLRFLNSDQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.729993, - 48.514019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H6MGEHRH8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42743, - 48.028544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2HGHKHSLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.729993, - 48.514019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H6MGEHRH8L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.502292, - 48.064159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFTFKLBGGV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.730125, - 48.513939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATGU49BCSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.665006, - 48.177289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIKEDRMXBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.444622, - 48.020072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIGMXJMDAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.534964, - 48.060667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M90FZ6RVEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.968666, - 47.951248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9T4YNRQ8T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07005, - 48.279567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAI86XVIQL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.518964, - 48.129514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHQEEP3OJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.051992, - 48.283534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMUUIBGAX6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73673, - 48.403725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ERKIMUKWMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.502756, - 48.357641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPY7WNXRYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.926727, - 48.445215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCTBEA2JQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.073498, - 48.269322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8YVZWSQIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.969593, - 48.422127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKK7RLCGHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.727224, - 48.257447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C16DS3V7VF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9504, - 48.407601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCL9EMOH18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.557904, - 48.589523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMCTUADDCP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.483034, - 47.994615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITYFK2QUQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.226495, - 48.179291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NU0UK8KQ1U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.068311, - 48.29443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYDC6UXCXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.078809, - 48.294342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOWEZM3YVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.52974, - 48.392695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWLLC5Y9PI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.067838, - 48.294424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W5FI5XLP32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.075898, - 48.293296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPHOAP76VH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08103, - 48.294271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UMJPQGG6NH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.337234, - 48.256026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FI7LYGYWRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.080508, - 48.293681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAP2EUA8MR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.070461, - 48.292115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6PXRPIOV4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.516982, - 48.399932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J4HVLFJXYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.201564, - 48.669258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENKBOA6MC5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.310657, - 48.493503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P4GE5YC7JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.920259, - 48.099248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNCIFCCI8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.891382, - 48.207971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GO3LHWGD06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.443498, - 48.108046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DVULJFPHTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395872, - 48.053815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPNHU2ZDUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400423, - 48.358925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQAAFAZ1RT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.922544, - 48.493274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1F8WRHMWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7603, - 48.5033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEPTJ9OWEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.006239, - 48.360819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ1CPN7JU7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.785801, - 48.509162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SM903GKE9B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19691, - 48.671467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NYOAPHU4JI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17291, - 48.408332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2C0H3ORFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.137337, - 48.207034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UIDOGADTJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085865, - 48.325312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XW3KNONHEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.46641, - 48.239466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AL6PSPCLF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.647877, - 48.267637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITQ6ULMJ59", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.682106, - 48.440882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDP80ZN7FA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.006872, - 47.948425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6FVVB3MVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.745718, - 47.951446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETNBV1EF5O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.745718, - 47.951446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETNBV1EF5O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46744838, - 49.17747979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJMTSHA9FY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21968, - 48.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTGNLZP5RI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19572, - 48.8922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OS5AYN2RWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19572, - 48.8922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OS5AYN2RWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21968, - 48.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTGNLZP5RI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21968, - 48.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTGNLZP5RI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21968, - 48.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTGNLZP5RI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21968, - 48.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTGNLZP5RI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133859, - 45.762267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQNUI0CSO4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133859, - 45.762267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQNUI0CSO4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.529006, - -17.5252859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SDKEJCFATZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.529006, - -17.5252859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SDKEJCFATZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26565477, - 43.59051036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D63HYFBJKD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Sa 14:00-18:00,Sa 09:00-12:00", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26565477, - 43.59051036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D63HYFBJKD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Sa 14:00-18:00,Sa 09:00-12:00", - "start_date": "2022-02-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16395031, - 43.95966538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOQN0KHP5L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16395031, - 43.95966538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOQN0KHP5L", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19572, - 48.8922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OS5AYN2RWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85479, - 47.5179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGVDHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85479, - 47.5179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGVDHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43131, - 44.899617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUC4FMQOJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43131, - 44.899617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUC4FMQOJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43131, - 44.899617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUC4FMQOJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85479, - 47.5179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGVDHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13112486, - 48.65894757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSXP47CUV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-21:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85479, - 47.5179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGVDHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46744838, - 49.17747979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FJMTSHA9FY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.61749, - 46.2324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFNDSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:30", - "start_date": "2019-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43131, - 44.899617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUC4FMQOJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.61749, - 46.2324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFNDSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:30", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74285255, - 46.32865994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKY1VPJFZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74285255, - 46.32865994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKY1VPJFZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74285255, - 46.32865994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKY1VPJFZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7033, - 49.740756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GZB3NTGYRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7033, - 49.740756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GZB3NTGYRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70315, - 49.74086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GZB3NTGYRT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70315, - 49.74086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GZB3NTGYRT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60705932, - 43.65212834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5FEEIN90B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60705932, - 43.65212834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X5FEEIN90B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.729515, - 48.079738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1UB8R9YFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:00-16:00", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.729515, - 48.079738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1UB8R9YFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:00-16:00", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70933, - 49.1065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKTKBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70933, - 49.1065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKTKBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65961, - 48.9365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVY9BPSSNH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65961, - 48.9365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVY9BPSSNH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74285255, - 46.32865994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKY1VPJFZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33561998, - 43.48068237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJGU8UPEDR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33561998, - 43.48068237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJGU8UPEDR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.146115, - 48.086151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGRXO7GJVB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.132481, - 46.957896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GR3CSHARYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.132481, - 46.957896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GR3CSHARYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49694935, - 43.57252502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMNRHLYJDM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49694935, - 43.57252502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMNRHLYJDM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49694935, - 43.57252502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMNRHLYJDM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.146115, - 48.086151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGRXO7GJVB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33561998, - 43.48068237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJGU8UPEDR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52538, - 50.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGSHBA4KAI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43131, - 44.899617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUC4FMQOJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43131, - 44.899617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUC4FMQOJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.336234, - 47.861831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIYOCDWK2D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.621137, - 47.895943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3UGVAMI5V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.745718, - 47.951446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETNBV1EF5O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.140287, - 48.201938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2LLOSSIAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793289, - 48.55213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AXLL5QQDT9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.745718, - 47.951446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETNBV1EF5O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.483057, - 48.009488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGS8EFRLLN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.913283, - 48.031301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDNIU62V9N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92133, - 48.036006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPPLUMHPKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.491682, - 47.999145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROSGBVYDNK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.379166, - 47.91356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JMO7A9PAVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04174, - 48.60593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZLMJZJ3PZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.111945, - 48.524954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJNS7ETPCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.584236, - 48.199717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JKZFBQGI7U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.296041, - 48.088101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZLRAD1NK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1445625, - 48.29725934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZAVWSNPPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.218059, - 48.423374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZFPF5S0ZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793289, - 48.55213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AXLL5QQDT9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865491, - 48.589547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YV5RIITPOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.770701, - 48.47764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAEYN5LYTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34095, - 48.027216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P6GDR6CG8R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.331652, - 47.85822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFHFMNWM27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.601061, - 47.782577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDQVGJDSB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.948368, - 48.498106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TR0POUQCGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.434096, - 47.803967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHYAW6LFGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.135303, - 48.108849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QH0DVWC2XY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886258, - 48.22296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIUG8CLD3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865491, - 48.589547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YV5RIITPOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.372734, - 47.868638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2ZQGJMFFF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32932, - 47.83289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWFKOG6DAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.320626, - 47.74663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNU5WLRMLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.770701, - 48.47764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAEYN5LYTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.039643, - 48.58377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EH4IDAEXBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.413374, - 48.271275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2IJYCW9UM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.321319, - 48.246578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEXAQQOGXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.061774, - 47.785968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMOCKAISVV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.293038, - 47.680423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GAKTDMGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.621137, - 47.895943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3UGVAMI5V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.288711, - 47.654848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFDR0FZIXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1445625, - 48.29725934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OZAVWSNPPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.601061, - 47.782577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UDQVGJDSB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.296041, - 48.088101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZLRAD1NK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32932, - 47.83289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWFKOG6DAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.331652, - 47.85822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFHFMNWM27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.288711, - 47.654848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFDR0FZIXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.061774, - 47.785968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMOCKAISVV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.372734, - 47.868638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2ZQGJMFFF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.140287, - 48.201938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2LLOSSIAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.331652, - 47.85822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFHFMNWM27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.331652, - 47.85822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFHFMNWM27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.320626, - 47.74663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNU5WLRMLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.111945, - 48.524954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJNS7ETPCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.584236, - 48.199717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JKZFBQGI7U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.293038, - 47.680423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GAKTDMGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.039643, - 48.58377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EH4IDAEXBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.218059, - 48.423374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZFPF5S0ZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.913283, - 48.031301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDNIU62V9N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.005376, - 47.950708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX0C74ZEDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886258, - 48.22296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIUG8CLD3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34095, - 48.027216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P6GDR6CG8R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.948368, - 48.498106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TR0POUQCGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.321319, - 48.246578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEXAQQOGXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.336234, - 47.861831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VIYOCDWK2D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.005376, - 47.950708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX0C74ZEDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04174, - 48.60593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZLMJZJ3PZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92133, - 48.036006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPPLUMHPKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.135303, - 48.108849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QH0DVWC2XY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.133981, - 48.110928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MIVDIW60ET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.413374, - 48.271275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2IJYCW9UM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.491682, - 47.999145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROSGBVYDNK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.006872, - 47.948425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6FVVB3MVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.483057, - 48.009488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGS8EFRLLN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.665006, - 48.177289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIKEDRMXBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.730125, - 48.513939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATGU49BCSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77329, - 44.2365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "caylusbascule", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.078485, - 48.23566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBKH2LGDHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.045015, - 48.307569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLM91FGX8V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08079663, - 48.29366661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJYAMZXUCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424326, - 48.027595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OI2ALZD0UQ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.045015, - 48.307569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLM91FGX8V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.149279, - 48.534902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LY7DK5AD7N", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.531585, - 48.396975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YV9WPIXPRX", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62488, - 48.23362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UOMK81HGEB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.142932, - 48.059765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XB2FPTW6L6", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424326, - 48.027595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OI2ALZD0UQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.097222, - 48.308883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMIBGXBY", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.920259, - 48.099248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNCIFCCI8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.097222, - 48.308883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMIBGXBY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.097222, - 48.308883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGEMIBGXBY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12797109, - 48.22545366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TYTYI3MTEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.708251, - 48.288087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQKIXJ3XWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110326, - 48.235741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IA7F7BLY0N", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.781652, - 48.501213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U45NFW8DLO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05667, - 48.29276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2FWMEF7HF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.142932, - 48.059765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XB2FPTW6L6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.781652, - 48.501213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U45NFW8DLO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.109849, - 48.299744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X7LH2QZYGH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466387, - 48.23941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROHSARMMTL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110326, - 48.235741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IA7F7BLY0N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.04579, - 48.278961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9MXJNYNEM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33627881, - 48.36390886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGSFFZIVNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33627881, - 48.36390886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MGSFFZIVNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.920259, - 48.099248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNCIFCCI8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.920259, - 48.099248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNCIFCCI8", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466387, - 48.23941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROHSARMMTL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.149279, - 48.534902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LY7DK5AD7N", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96937277, - 48.28691395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXWB4EBYDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.531585, - 48.396975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YV9WPIXPRX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.109849, - 48.299744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X7LH2QZYGH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.078485, - 48.23566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IBKH2LGDHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.731123, - 48.221726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSAKTATWHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.337234, - 48.256026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FI7LYGYWRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65457, - 48.388611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMRW3PLL2G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.232003, - 48.592374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSDAVBFCEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.726184, - 48.520456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SX6GEG8ZZ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.577514, - 48.29715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQEXLSVRD6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99599, - 47.988229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F2OPBGTHZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.721178, - 48.505446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWGZXGSK7K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.727069, - 48.51718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HNYSCUGFWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.663522, - 48.51467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C3XIBVJXZ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.997767, - 48.194045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PCG9MT1EER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789855, - 48.264099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R2KKTURY5F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.658171, - 48.418127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWW4OVOZ6V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26242, - 48.345479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJ4BNTOLRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.854229, - 48.225196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMYWYPTXJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.572433, - 48.508902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTLPHAV5IB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.675846, - 48.140091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSBX7JXEXQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.623987, - 48.202677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BWBZ2WP2CP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.733153, - 48.375387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JMNDZF5K60", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.138651, - 48.059752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPVDAUWIUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.975597, - 48.274322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUOBRCUPX7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.716259, - 48.515358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHQHGUNUJO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.067838, - 48.294424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W5FI5XLP32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.268967, - 48.254884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPYZDARPHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26666, - 48.252997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWCZOVJJDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.51705, - 48.297775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYVVZLUAV4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.274361, - 48.503592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEGQM5QJVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08103, - 48.294271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UMJPQGG6NH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.52974, - 48.392695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWLLC5Y9PI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.52755, - 48.391572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICAF2FYXD8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.727739, - 48.524444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2RZPOTRBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.516982, - 48.399932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J4HVLFJXYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.068311, - 48.29443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYDC6UXCXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.080508, - 48.293681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAP2EUA8MR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.070461, - 48.292115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6PXRPIOV4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.078809, - 48.294342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOWEZM3YVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.075898, - 48.293296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPHOAP76VH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96937277, - 48.28691395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXWB4EBYDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96937277, - 48.28691395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXWB4EBYDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.781652, - 48.501213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U45NFW8DLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39826, - 43.9183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVDHGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99106, - 43.8804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQADCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23461, - 43.8518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "verdun", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.317544, - 44.155169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NTXBJ7UOFO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.317544, - 44.155169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NTXBJ7UOFO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.934072, - 44.0996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pommevic", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94508, - 44.3232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Roquecor", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39826, - 43.9183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVDHGA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02194, - 44.0619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "saintnicolas", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47908, - 44.1159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "realville", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11143, - 44.0404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNJXRX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.94508, - 44.3232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Roquecor", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47908, - 44.1159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "realville", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11176, - 44.0411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRZPUA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61063, - 44.2515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Liberation", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61063, - 44.2515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Liberation", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06601, - 43.9777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGXFXH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06601, - 43.9777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGXFXH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99106, - 43.8804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQADCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04088, - 44.0282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWHVYH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1353, - 43.8973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UEEYXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19525, - 44.0841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUYNGD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77329, - 44.2365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "caylusbascule", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.89291, - 44.1574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVHDDR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33743, - 43.9678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGDEZM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.33743, - 43.9678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGDEZM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53556, - 43.9639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YYSPNW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81618, - 44.1103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNENFV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53556, - 43.9639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YYSPNW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56976, - 44.0336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FXFDDN", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56976, - 44.0336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FXFDDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04088, - 44.0282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWHVYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.918499, - 43.9577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCUBLN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.918499, - 43.9577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCUBLN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11176, - 44.0411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRZPUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02086, - 43.9209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "serignac", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96937277, - 48.28691395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IXWB4EBYDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02086, - 43.9209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "serignac", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424326, - 48.027595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OI2ALZD0UQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.531585, - 48.396975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YV9WPIXPRX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.149279, - 48.534902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LY7DK5AD7N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60696477, - 48.2349464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDITYHBJKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60696477, - 48.2349464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDITYHBJKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.731269, - 48.484877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXINTQKPIH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.030422, - 48.335985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLKGXP4CHU0PTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.142932, - 48.059765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XB2FPTW6L6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.04579, - 48.278961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9MXJNYNEM", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110326, - 48.235741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IA7F7BLY0N", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38777907, - 48.07744194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENFWY3FHBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.109849, - 48.299744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X7LH2QZYGH", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62488, - 48.23362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UOMK81HGEB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466387, - 48.23941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROHSARMMTL", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62488, - 48.23362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UOMK81HGEB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08079663, - 48.29366661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C16QZJT72Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.435283, - 48.18069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4MBOOZ97B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38777907, - 48.07744194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENFWY3FHBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88195, - 44.1801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWCMEH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61552, - 44.1758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "septfonds", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.89554161, - 44.10916252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valencejean", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02194, - 44.0619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "saintnicolas", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23461, - 43.8518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "verdun", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.89554161, - 44.10916252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valencejean", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61552, - 44.1758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "septfonds", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17738, - 44.0048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SaintPorquier", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08079663, - 48.29366661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C16QZJT72Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17738, - 44.0048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SaintPorquier", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19997, - 43.8291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "savenes", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19997, - 43.8291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "savenes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.731269, - 48.484877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXINTQKPIH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08079663, - 48.29366661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJYAMZXUCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.435283, - 48.18069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4MBOOZ97B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.111696, - 48.624835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JT57QTOIAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.854229, - 48.225196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMYWYPTXJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.623987, - 48.202677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BWBZ2WP2CP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.297369, - 48.084844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCLIDDLXMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.477906, - 48.069531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HQBEJCHF0S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.039225, - 48.292272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLCIFNNICB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.975211, - 48.382891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NO3UTM7ESA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.290049, - 48.519764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIUZKM0QXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05944, - 48.295128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W0DDDMUY3L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.914111, - 48.026042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTPT9EVHHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.852836, - 48.501457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MHAS1DBV2O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.297369, - 48.084844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCLIDDLXMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.829991, - 48.311377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE3I1SNXAY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624693, - 48.233623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZHYYMLXNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.500127, - 48.540725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOSAEXVXOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3851649, - 48.5015677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RIG9LCTQGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.310657, - 48.493503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P4GE5YC7JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0284165, - 48.2861626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJGA8L3JV7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0980575, - 48.3143585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q60WEBZNBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9976, - 48.119941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HC39F8XCC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.157508, - 48.533428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNTCUBAVK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.473429, - 48.071427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQCJJBHN5V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8726956, - 48.2785931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NLRCCHATCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.332113, - 48.364012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AW2Y62ZANM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0665713, - 48.5411282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P0XP87AAJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.112504, - 48.635996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ML8ZQJOCDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.111696, - 48.624835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JT57QTOIAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4033642, - 48.0404528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWRWARYFKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.968203, - 48.568551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P4F3QRFJ1V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7392818, - 48.3318444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LX4TJ9LIGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.130872, - 47.957248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KICUPJFZY5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2163563, - 48.1705744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LOQVFXXZ4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.129385, - 48.535128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q2NDRSYOYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.498121, - 48.492224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSYIJGUBSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.502358, - 48.495221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SK1TRPWVYS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.059989, - 48.346367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA0RW4NYDI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.016524, - 48.465158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKFIUVLHYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.201564, - 48.669258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENKBOA6MC5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.935592, - 48.477265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPP0IT0WU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526286, - 48.348072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O67PC5Z8LO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19691, - 48.671467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NYOAPHU4JI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.706075, - 48.233498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRX5I5HMT3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.022728, - 48.333103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKPUUNPHL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.968666, - 47.951248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9T4YNRQ8T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.626185, - 48.548185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZWWQPXHOM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.518964, - 48.129514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NHQEEP3OJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.534964, - 48.060667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M90FZ6RVEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.926727, - 48.445215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCTBEA2JQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.969593, - 48.422127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKK7RLCGHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400423, - 48.358925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQAAFAZ1RT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.673175, - 48.484073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HAKGNH2QU1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.502756, - 48.357641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DPY7WNXRYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07005, - 48.279567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAI86XVIQL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.50281, - 48.493278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBVMTPZMH6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.051992, - 48.283534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMUUIBGAX6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.103553, - 48.016814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAI6K956YE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069758, - 48.276579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHNPHFUR1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.110207, - 48.235708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E3LX6DF0I4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.702219, - 48.236231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCIKXNCWR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.620832, - 48.380433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHE4S0TLNK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.852836, - 48.501457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MHAS1DBV2O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.776899, - 48.198718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AIFFRKY5XV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.125956, - 48.332553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O8L0SVN1YZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.372186, - 48.121911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGEEE64TSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.668466, - 48.23801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYCA2CSWBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43476989, - 48.5110323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FIFWQ1FUV1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.180425, - 48.311709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJEVUUE5V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035952, - 48.129995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZQRL62BMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73673, - 48.403725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ERKIMUKWMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.444622, - 48.020072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CIGMXJMDAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.708077, - 48.233992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CXZBMR0ZO1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.302821, - 48.142869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WX2E9X4IMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246403, - 48.166854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCLUISOFLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2988, - 48.238953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZLM3MS4GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.935592, - 48.477265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPP0IT0WU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.535224, - 48.348173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L3BRA1Y7LX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.997767, - 48.194045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PCG9MT1EER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.577514, - 48.29715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQEXLSVRD6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.498121, - 48.492224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSYIJGUBSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.502358, - 48.495221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SK1TRPWVYS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.477906, - 48.069531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HQBEJCHF0S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.129385, - 48.535128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q2NDRSYOYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.112504, - 48.635996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ML8ZQJOCDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.473429, - 48.071427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQCJJBHN5V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.157508, - 48.533428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNTCUBAVK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.016524, - 48.465158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKFIUVLHYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.716259, - 48.515358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHQHGUNUJO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.726184, - 48.520456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SX6GEG8ZZ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.138651, - 48.059752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPVDAUWIUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.727739, - 48.524444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2RZPOTRBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.721178, - 48.505446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWGZXGSK7K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99599, - 47.988229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F2OPBGTHZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.059989, - 48.346367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA0RW4NYDI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9976, - 48.119941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HC39F8XCC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.130872, - 47.957248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KICUPJFZY5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.268967, - 48.254884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KPYZDARPHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26242, - 48.345479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJ4BNTOLRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789855, - 48.264099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R2KKTURY5F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.733153, - 48.375387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JMNDZF5K60", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.663522, - 48.51467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C3XIBVJXZ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.975597, - 48.274322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TUOBRCUPX7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.572433, - 48.508902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VTLPHAV5IB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.675846, - 48.140091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSBX7JXEXQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.731123, - 48.221726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSAKTATWHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.274361, - 48.503592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEGQM5QJVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.232003, - 48.592374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSDAVBFCEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65457, - 48.388611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMRW3PLL2G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.708251, - 48.288087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQKIXJ3XWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.51705, - 48.297775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYVVZLUAV4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26666, - 48.252997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWCZOVJJDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.658171, - 48.418127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWW4OVOZ6V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.727069, - 48.51718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HNYSCUGFWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9504, - 48.407601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCL9EMOH18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.335461, - 48.301693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X98XY5WWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.557904, - 48.589523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMCTUADDCP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069551, - 48.31203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8VPGPD5FN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06958, - 48.312045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FT7GQAID6I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.577552, - 48.550965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F3LFNNOE3M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069551, - 48.31203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8VPGPD5FN", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.122666, - 48.455884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJJBMETL1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.122666, - 48.455884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJJBMETL1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.029734, - 48.368461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O1EWBAVT2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.029734, - 48.368461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O1EWBAVT2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.017202, - 48.142109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UCV3A9QN03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.647877, - 48.267637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITQ6ULMJ59", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.137337, - 48.207034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UIDOGADTJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17291, - 48.408332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2C0H3ORFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.46641, - 48.239466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AL6PSPCLF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085865, - 48.325312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XW3KNONHEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.073498, - 48.269322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z8YVZWSQIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.194289, - 48.531443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUS0N5LCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.829991, - 48.311377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE3I1SNXAY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.914111, - 48.026042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTPT9EVHHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.785801, - 48.509162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SM903GKE9B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.483034, - 47.994615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITYFK2QUQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.226495, - 48.179291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NU0UK8KQ1U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.682106, - 48.440882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDP80ZN7FA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7603, - 48.5033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEPTJ9OWEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.006239, - 48.360819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ1CPN7JU7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.891382, - 48.207971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GO3LHWGD06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.727224, - 48.257447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C16DS3V7VF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.920259, - 48.099248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNCIFCCI8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05944, - 48.295128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W0DDDMUY3L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.039225, - 48.292272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLCIFNNICB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.500127, - 48.540725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOSAEXVXOL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.290049, - 48.519764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIUZKM0QXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.975211, - 48.382891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NO3UTM7ESA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.624693, - 48.233623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZHYYMLXNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.439726, - 42.599199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCARLUQ2VL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132567, - 50.602568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QIGYFMBDEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.61231, - -17.600917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMUDQRXWDT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.31849, - 48.008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVXMZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.88602, - 47.8614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBPTPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38363, - 47.8107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUTTDT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38363, - 47.8107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUTTDT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.26152, - 47.8893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FFTJZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.26152, - 47.8893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FFTJZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64136, - 47.8915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSRMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.59143, - 47.7926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANVVBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7875, - 47.7564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPXABC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.68107, - 47.7425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKCQMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.59143, - 47.7926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANVVBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.10407, - 47.7102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNJRKT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.68978, - 47.7782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PCHBYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7875, - 47.7564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SPXABC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.10407, - 47.7102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNJRKT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89082, - 48.1079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKAKPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.88602, - 47.8614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBPTPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.31849, - 48.008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVXMZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5633, - 47.9386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAVUZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40389, - 48.0434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWTLJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.21965, - 47.7134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDKMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28543, - 47.6308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XJVQBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1101, - 47.9792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWUXXF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91569, - 47.6531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPKBXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.15332, - 47.5449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DWXWZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.21965, - 47.7134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDKMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91569, - 47.6531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPKBXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.68978, - 47.7782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PCHBYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41844, - 47.8032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCYRPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41844, - 47.8032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCYRPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87981, - 48.0671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNEXBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.87981, - 48.0671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNEXBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.32281, - 47.8756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DDQTSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.32281, - 47.8756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DDQTSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40389, - 48.0434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWTLJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.47243, - 48.014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRHCVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64136, - 47.8915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSRMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89082, - 48.1079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XKAKPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.39986, - 47.8334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFEJZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10149, - 47.631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESZPPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.62943, - 47.5793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HLLWEY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73722, - 47.6903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGDFBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76372, - 47.7163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PQFPGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15967, - 47.8342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAEEUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15967, - 47.8342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAEEUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83751, - 47.8889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFVWQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83751, - 47.8889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFVWQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34964, - 47.7633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUZCWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.13333, - 47.8178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKLYRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89455, - 47.5421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUEZBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34964, - 47.7633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUZCWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.13333, - 47.8178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKLYRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.35627, - 47.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJUDGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3596, - 47.7305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCSBVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73722, - 47.6903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGDFBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.62943, - 47.5793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HLLWEY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28118, - 47.9191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGQHWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.97227, - 47.9577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXSADP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.68107, - 47.7425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKCQMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.47243, - 48.014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRHCVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.39986, - 47.8334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFEJZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.97227, - 47.9577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXSADP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.37608, - 47.7581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMHCBG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10149, - 47.631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESZPPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.37608, - 47.7581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LMHCBG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28118, - 47.9191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGQHWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35816, - 47.5803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDVXQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35816, - 47.5803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDVXQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.47093, - 47.4821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWZCTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.47093, - 47.4821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWZCTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.950611, - 47.704145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMRUPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.950611, - 47.704145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMRUPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1101, - 47.9792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWUXXF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07617, - 47.7484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMJPKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5707, - 47.6753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CHEKHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5899, - 47.7312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYFYJOBRX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3669, - 47.754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQBKMPJAIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3669, - 47.754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQBKMPJAIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84641555, - 47.59264888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWQYYRAB2F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84641555, - 47.59264888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWQYYRAB2F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.3849, - 47.9269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGQGARWR3K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.3849, - 47.9269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SGQGARWR3K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0116, - 47.6701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKDC4JEQPF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0116, - 47.6701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKDC4JEQPF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3432, - 47.7237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VA14FOL0VC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3432, - 47.7237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VA14FOL0VC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.863, - 47.6014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFJUNQY8TV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.863, - 47.6014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFJUNQY8TV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3663, - 47.7542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1AOYXWWDU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5899, - 47.7312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYFYJOBRX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4544, - 47.7032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWSHUHFMQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.103447, - 47.486785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CWX3CAM47B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.103447, - 47.486785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CWX3CAM47B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84641555, - 47.59264888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWQYYRAB2F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77101, - 47.8808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFWBRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.42268, - 47.8669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNEHHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4332, - 47.9944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVDKQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33653, - 47.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJBZTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5633, - 47.9386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAVUZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4332, - 47.9944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVDKQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.525, - 48.0527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXYAI8QKSC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.50753, - 47.8221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDCXYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84641555, - 47.59264888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWQYYRAB2F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.525, - 48.0527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXYAI8QKSC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.6866, - 48.0616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLMBLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.17315, - 47.9645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVHKXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77101, - 47.8808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JFWBRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.6866, - 48.0616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLMBLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.61417, - 47.6824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJVEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.6447, - 48.0481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K2YQ7NB5P1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5493, - 47.9537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVMWS0NNYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.23566, - 47.736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKXRZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.61417, - 47.6824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJVEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.45708, - 47.5924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEFKNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.65063, - 47.7031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSCHEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.65063, - 47.7031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSCHEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07039, - 47.653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWCLSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07039, - 47.653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWCLSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39755, - 47.4808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFURSC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39755, - 47.4808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFURSC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.06502, - 47.9813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHRADG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.06502, - 47.9813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHRADG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28543, - 47.6308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XJVQBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.27921, - 47.726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFJGYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5707, - 47.6753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CHEKHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.15332, - 47.5449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DWXWZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.27921, - 47.726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFJGYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07617, - 47.7484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMJPKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.45708, - 47.5924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEFKNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.04573, - 47.9257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDWAGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.04573, - 47.9257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDWAGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.44269536, - 47.80292247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYZLMIBAEA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4544, - 47.7032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWSHUHFMQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5493, - 47.9537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVMWS0NNYA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.341, - 47.8103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTJNQSUBFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1267, - 47.4779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOHTCOIT7B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3663, - 47.7542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1AOYXWWDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.341, - 47.8103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTJNQSUBFI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.6447, - 48.0481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K2YQ7NB5P1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.3536, - 47.6365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHQTBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1267, - 47.4779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VOHTCOIT7B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.44269536, - 47.80292247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYZLMIBAEA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33653, - 47.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJBZTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.18881, - 48.0709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PYLBEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.18881, - 48.0709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PYLBEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.3536, - 47.6365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHQTBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76372, - 47.7163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PQFPGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.35627, - 47.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJUDGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3596, - 47.7305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCSBVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.72136, - 47.5468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCVTUT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95376, - 48.054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSEDAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01283, - 47.897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNWQDX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7308, - 47.6654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTJEBK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7308, - 47.6654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTJEBK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40121, - 47.5346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPKPDC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01283, - 47.897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNWQDX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40121, - 47.5346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPKPDC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82905, - 47.8815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTAZYC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.021463, - 46.520895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SQMYKHQ3PK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.021463, - 46.520895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SQMYKHQ3PK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07186963, - 49.11279016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVOJ4ZF90H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07186963, - 49.11279016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVOJ4ZF90H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.72136, - 47.5468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCVTUT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38847, - 47.9204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "URNMJP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37854, - 47.7629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUGKFT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82905, - 47.8815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTAZYC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78828, - 47.6515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFUQTJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96514, - 48.0714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYYADE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3103, - 47.7122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EETZMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.8333, - 47.5019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJSQBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.8333, - 47.5019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJSQBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.12794, - 47.9302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPBPBH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.12794, - 47.9302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPBPBH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95376, - 48.054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSEDAA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76128936, - 47.5276439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI2Z8CZS2PEU6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76128936, - 47.5276439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI2Z8CZS2PEU6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37854, - 47.7629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUGKFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.44976, - 47.6818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LEVJXJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.44976, - 47.6818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LEVJXJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38847, - 47.9204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "URNMJP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96514, - 48.0714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYYADE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4984624, - -20.8949185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HOT2JOEZEY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4984624, - -20.8949185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HOT2JOEZEY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08043, - 48.0245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUASAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08043, - 48.0245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUASAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088954, - 47.019179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APWTIE1O95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088954, - 47.019179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APWTIE1O95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52194, - 48.2692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWHLNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52194, - 48.2692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWHLNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78391, - 47.667304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUDJR8729BFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78391, - 47.667304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHUDJR8729BFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5655243, - 45.3967526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WLHEXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5655243, - 45.3967526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WLHEXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5747122, - 45.3971756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWLUVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5747122, - 45.3971756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWLUVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57173, - 45.374466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFMCUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46775447, - -21.3275523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLIDF9PFDM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46775447, - -21.3275523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLIDF9PFDM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82520172, - 46.46345109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNJBH5F0QI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.379552, - 43.517808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLILIHAPFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2360426, - 49.09372207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MRLB3TAK7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1106, - 49.0847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFFQCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1106, - 49.0847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFFQCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53287, - 45.4834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "moutiers", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53287, - 45.4834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "moutiers", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.379552, - 43.517808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLILIHAPFT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82520172, - 46.46345109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNJBH5F0QI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.379552, - 43.517808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLILIHAPFT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.379552, - 43.517808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLILIHAPFT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.379552, - 43.517808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLILIHAPFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.379552, - 43.517808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLILIHAPFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.701, - 43.3988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DB6JAUQC9M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70692, - 43.3996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DB6JAUQC9M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3103, - 47.7122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EETZMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73063, - 47.6586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZHEMA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76628, - 47.7582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDBBKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.58161, - 47.5179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJZLHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4488, - 47.6415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNFCWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.71709, - 48.1266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBVXDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.24881, - 47.8279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJDCGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.49935, - 48.0322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGVJHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.86933, - 47.6557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FDWQJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.68495, - 47.9879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CETTJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.25156, - 47.6964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWGLVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.86933, - 47.6557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FDWQJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.68495, - 47.9879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CETTJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34411, - 47.481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPYXVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34411, - 47.481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPYXVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29572, - 47.6766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWNFHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29572, - 47.6766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWNFHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.544285, - 48.096079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJKNWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.544285, - 48.096079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJKNWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.24881, - 47.8279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJDCGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.71709, - 48.1266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBVXDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.39355, - 47.74 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEDFUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754, - 47.6586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NNRVKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76628, - 47.7582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDBBKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38255, - 47.7362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXRKQV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38255, - 47.7362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXRKQV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10625, - 47.6672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKSKQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10625, - 47.6672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKSKQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4488, - 47.6415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNFCWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38936, - 48.1453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQYWJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.39355, - 47.74 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEDFUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.46269, - 48.1395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TZEPFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.49935, - 48.0322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGVJHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38936, - 48.1453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQYWJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.46269, - 48.1395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TZEPFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82046, - 48.1233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKGZCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82046, - 48.1233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EKGZCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.58161, - 47.5179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJZLHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34054, - 48.0995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CHQQTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7885, - 47.6705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJXJWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75233, - 48.068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWDFEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.24083, - 47.7641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNFMWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84266, - 47.7581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAYSUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37788, - 47.7532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNUDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37788, - 47.7532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNUDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36597, - 47.7354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCSFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.12044, - 47.7617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSHGWX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36597, - 47.7354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCSFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.42677, - 47.7369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQMKFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7885, - 47.6705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJXJWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89455, - 47.5421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUEZBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73063, - 47.6586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZHEMA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78828, - 47.6515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFUQTJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.94894, - 47.6389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBMZW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.24083, - 47.7641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNFMWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.94894, - 47.6389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBMZW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.12044, - 47.7617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSHGWX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1234, - 47.9059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THSFCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84266, - 47.7581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAYSUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38746, - 47.7427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDWRKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.25156, - 47.6964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HWGLVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34054, - 48.0995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CHQQTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75233, - 48.068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWDFEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38592, - 47.7613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZXSRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78023, - 47.6326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVJQYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38592, - 47.7613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZXSRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38746, - 47.7427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDWRKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1234, - 47.9059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THSFCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78023, - 47.6326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVJQYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.35627, - 47.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJUDGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.42677, - 47.7369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQMKFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.35627, - 47.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJUDGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36581, - 47.7489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVPZUN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36581, - 47.7489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVPZUN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.17315, - 47.9645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVHKXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.42268, - 47.8669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNEHHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677733, - 45.3928606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMNJBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1124, - 47.599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGBPNA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79624, - 47.6607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTMTEE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.60098, - 48.141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYTRZG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38440197, - 47.80989417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TZEHVV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.30513, - 47.5295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFRNAW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.30513, - 47.5295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFRNAW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28274, - 48.0824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMKMGS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20706, - 48.0669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQPFQW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00925, - 47.7776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "URGRZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79624, - 47.6607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTMTEE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00925, - 47.7776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "URGRZH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1124, - 47.599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGBPNA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20706, - 48.0669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQPFQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28274, - 48.0824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMKMGS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.59084, - 47.7337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJHXYP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.13434, - 47.7663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYJMNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36819, - 47.7468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APALYU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33673, - 47.8876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCZYVW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.50753, - 47.8221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDCXYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89104, - 47.5497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEHCXH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0849722, - 47.2945556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TI8PEKPXSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0849722, - 47.2945556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TI8PEKPXSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2229723, - 47.3683056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTFVUHHRFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2229723, - 47.3683056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTFVUHHRFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2206389, - 47.3759444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGGCRTEPRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1861944, - 47.36075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BD9SBFG89K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15921, - 47.3491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFVGTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15478, - 47.346444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVA0LBMFFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15478, - 47.346444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVA0LBMFFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1568056, - 47.34725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWIHLJMHAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1861944, - 47.36075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BD9SBFG89K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1568056, - 47.34725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWIHLJMHAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.16351, - 47.638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCQHSR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.13434, - 47.7663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYJMNZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.16351, - 47.638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCQHSR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36819, - 47.7468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APALYU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89104, - 47.5497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEHCXH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.60098, - 48.141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYTRZG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.33673, - 47.8876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCZYVW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76128936, - 47.5276439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI2WDITY2FS8E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.385595, - 47.706284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NE1A8MI3RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.382645, - 47.706029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXD9WRDSZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.382645, - 47.706029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXD9WRDSZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.385595, - 47.706284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NE1A8MI3RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76128936, - 47.5276439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI2WDITY2FS8E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.379785, - 47.50075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ6QKLM4O5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.379785, - 47.50075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ6QKLM4O5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.98956, - 47.6665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLENKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34107, - 47.7743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNSWQT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82373, - 47.6269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NEDQCA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.98956, - 47.6665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLENKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.852219, - 47.601017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PREPCWAOME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07781, - 47.5703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UT10PKNXV9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.16776, - 47.6756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSZCJC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.59084, - 47.7337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJHXYP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54602, - 47.9541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBRBBU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.16776, - 47.6756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSZCJC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54602, - 47.9541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBRBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38442, - 47.8099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TZEHVV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.852219, - 47.601017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PREPCWAOME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754821, - 47.657313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSBW6HJK6Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0008, - 47.6173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGJZHNOXXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.648074, - 47.525771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQ6RXOGQR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.648074, - 47.525771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQ6RXOGQR9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07781, - 47.5703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UT10PKNXV9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2206389, - 47.3759444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGGCRTEPRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCX0MN1QXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15921, - 47.3491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HFVGTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49844226, - 48.53267741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JQ6N8HQWWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.59489, - 48.5315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUFXYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48624, - 48.5248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNUWUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42629, - 48.5403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXZDMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42629, - 48.5403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXZDMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4851, - 48.5742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSWCES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4851, - 48.5742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSWCES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52939, - 48.5652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VPCHZV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56569, - 48.5243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENQKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5323, - 48.5442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGPKVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49959, - 48.5614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSKUAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.47071, - 48.5313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FASQGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.47071, - 48.5313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FASQGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.51442, - 48.5661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVBSNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.51442, - 48.5661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVBSNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49959, - 48.5614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSKUAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.59489, - 48.5315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUFXYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49481, - 48.5395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLFETT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49877, - 48.5407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLHZJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34541, - 48.5405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZLFEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56626, - 48.5611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBBJAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.32491, - 48.5502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNQCVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.32491, - 48.5502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNQCVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.53039, - 48.5226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCMSEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34541, - 48.5405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZLFEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43221, - 48.5356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFJPLY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5323, - 48.5442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGPKVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49877, - 48.5407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GLHZJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45618, - 48.5396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLKTCA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49481, - 48.5395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLFETT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56569, - 48.5243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENQKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48624, - 48.5248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PNUWUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.53039, - 48.5226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCMSEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45618, - 48.5396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLKTCA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49844226, - 48.53267741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JQ6N8HQWWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCX0MN1QXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331992117, - 47.61497852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2CH6C5QBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331992117, - 47.61497852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2CH6C5QBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331992117, - 47.61497852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2CH6C5QBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331992117, - 47.61497852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2CH6C5QBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331992117, - 47.61497852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2CH6C5QBH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331992117, - 47.61497852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N2CH6C5QBH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80911, - 47.5099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X9UCRG8ZDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80911, - 47.5099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X9UCRG8ZDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52771, - 46.6717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R6EKEKG2QM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52771, - 46.6717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R6EKEKG2QM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39965998, - 45.48381895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCFWJE8H9N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.90543, - -17.5275527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MBSSYTGNDB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.90543, - -17.5275527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MBSSYTGNDB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCX0MN1QXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCX0MN1QXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.40478507, - 43.7221983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIAIVNQITZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36004, - 47.749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUMDJK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37338, - 47.7318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFGWPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34107, - 47.7743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNSWQT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.41565, - 47.7903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYQNFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.52617, - 47.7724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZXXAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29707, - 47.5174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYBRMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76399, - 47.6379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRGKRU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77215, - 47.658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVGAUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73667, - 47.6188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJTDLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76399, - 47.6379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GRGKRU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.99905, - 47.7203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRSVSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15694, - 47.6411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCGGHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77215, - 47.658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVGAUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.99905, - 47.7203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRSVSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96661, - 48.065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADZEDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.41565, - 47.7903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYQNFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.42737, - 47.7346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVRKJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96661, - 48.065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADZEDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77606, - 47.5222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMNCFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.52617, - 47.7724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZXXAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4989, - 47.7342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JEAFVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4989, - 47.7342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JEAFVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.72319, - 47.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRLQKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.13192, - 47.5206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUSQJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64905, - 47.6292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DREUCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83013, - 47.6149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDQXAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.008798, - 47.669805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKP4F0ALTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.008798, - 47.669805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKP4F0ALTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.72319, - 47.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HRLQKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.81222, - 47.8176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEPWPS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34079459, - 47.81132803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXWAZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.81222, - 47.8176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GEPWPS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01824, - 47.8748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUDAHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01824, - 47.8748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUDAHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20436, - 47.6577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZZHAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20436, - 47.6577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZZHAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34079459, - 47.81132803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXWAZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73667, - 47.6188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJTDLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77606, - 47.5222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMNCFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64905, - 47.6292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DREUCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15694, - 47.6411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCGGHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83354, - 47.8557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNAHPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.52643, - 47.862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBEWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.52643, - 47.862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBEWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.72377, - 47.9111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZFTLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.72377, - 47.9111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZFTLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.71399, - 47.9619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDYFKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.71399, - 47.9619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDYFKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.13532, - 47.9061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTGWJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.13532, - 47.9061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTGWJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.81932, - 47.9187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATFEQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.81932, - 47.9187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATFEQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.28161, - 47.9778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQHUAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.28161, - 47.9778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQHUAW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.39381, - 47.9955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMMMWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.39381, - 47.9955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMMMWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83354, - 47.8557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CNAHPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.23566, - 47.736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKXRZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.397311, - 47.929532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPU0REEKYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.35777, - 47.7079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVLALM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.43252, - 47.7023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CURVAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.43252, - 47.7023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CURVAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.397311, - 47.929532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPU0REEKYH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36487, - 47.7519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTUAMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.45204, - 47.6602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMWQEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.45204, - 47.6602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VMWQEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.35777, - 47.7079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVLALM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36487, - 47.7519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTUAMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.40196, - 47.7667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXKJUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.40196, - 47.7667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXKJUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.49312, - 47.7926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNARGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.49312, - 47.7926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XNARGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.397311, - 47.929532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPU0REEKYH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.397311, - 47.929532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPU0REEKYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77069, - 47.6455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NAKFKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00035, - 47.5867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TTMTLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36004, - 47.749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUMDJK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.2128, - 47.739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULLLGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7638, - 47.6588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZDKPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76991, - 47.525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFEDWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76991, - 47.525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFEDWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38456, - 47.7039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAVVNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.38456, - 47.7039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAVVNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91855, - 47.6183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLFQUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91855, - 47.6183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLFQUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36112, - 47.7498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPKBZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.97686, - 47.9083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTDFXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.97686, - 47.9083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GTDFXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.49143, - 48.1038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAYULB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.49143, - 48.1038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AAYULB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28271, - 47.8198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTQNMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28271, - 47.8198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTQNMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10467, - 47.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBMHAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7638, - 47.6588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZDKPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.48298, - 47.5556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TGSHMS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.48298, - 47.5556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TGSHMS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.02919, - 47.5893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPRULV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.12166, - 47.4817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATFAFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.02919, - 47.5893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPRULV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36112, - 47.7498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPKBZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.12166, - 47.4817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATFAFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75518, - 47.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWMRND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82373, - 47.6269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NEDQCA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75518, - 47.6507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWMRND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.80442, - 47.6975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LTFJPE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37338, - 47.7318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFGWPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3622, - 47.7537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRNMMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3622, - 47.7537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRNMMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.94377, - 47.5681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDNNRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.94377, - 47.5681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDNNRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.80442, - 47.6975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LTFJPE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10467, - 47.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBMHAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.2128, - 47.739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULLLGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29707, - 47.5174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYBRMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64181, - 47.838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJHPTX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.41064, - 48.0606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAMTCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1275, - 48.1642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGPYPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95916, - 47.6736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TLKZQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.41064, - 48.0606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAMTCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.42737, - 47.7346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EVRKJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76808, - 47.6709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRRLPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75941, - 47.6563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRXSYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77069, - 47.6455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NAKFKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76808, - 47.6709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRRLPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75489, - 47.6421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TLSDKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83013, - 47.6149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDQXAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75941, - 47.6563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRXSYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75489, - 47.6421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TLSDKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00035, - 47.5867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TTMTLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.13192, - 47.5206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUSQJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.27127, - 48.0368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAGKJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00026, - 47.8482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRXYXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95916, - 47.6736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TLKZQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.98203, - 47.6686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJSCSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64181, - 47.838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJHPTX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.09225, - 48.0281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCDSEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.09225, - 48.0281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCDSEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54198, - 47.6887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWHNTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54198, - 47.6887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SWHNTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00026, - 47.8482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRXYXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.98203, - 47.6686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJSCSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.27127, - 48.0368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAGKJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1275, - 48.1642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGPYPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754, - 47.6586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NNRVKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.27615, - 47.8047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPZGQN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.27615, - 47.8047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LPZGQN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07873, - 47.5846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLYHGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07873, - 47.5846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLYHGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57173, - 45.374466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFMCUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.61231, - -17.600917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMUDQRXWDT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30034399, - -20.9435549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YRCO4MCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70319375, - 46.84935771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSGDHJKZWQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17280653, - 49.15062261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QV1XBL32UC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2323784, - 49.09145112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1OTAOVE13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17280653, - 49.15062261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QV1XBL32UC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17280653, - 49.15062261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QV1XBL32UC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17077408, - 49.13026545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ3N6E2YCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2323784, - 49.09145112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1OTAOVE13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17280653, - 49.15062261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QV1XBL32UC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30034399, - -20.9435549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YRCO4MCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30034399, - -20.9435549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YRCO4MCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66796, - 48.7626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUQNWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05189, - 47.3612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EY9BGCXHTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2323784, - 49.09145112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1OTAOVE13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17077408, - 49.13026545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ3N6E2YCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2323784, - 49.09145112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A1OTAOVE13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27165, - 48.828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUERDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43781, - 49.054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBMZWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43771407, - 49.05467492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBMZWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.791854, - 43.436471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IAN9F6VWO1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.080172, - 48.02775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMPLB7WHDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.080172, - 48.02775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMPLB7WHDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.935281, - 49.930116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETMIFQYXCA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.932803, - 49.928808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SFV8O6KKAO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.932803, - 49.928808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SFV8O6KKAO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.935281, - 49.930116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETMIFQYXCA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.892884, - 42.672587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LTXRMEKMHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.889084, - 42.738149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVLIOS1NEP", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.886408, - 42.671744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQ3Q8W8JZB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.886408, - 42.671744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQ3Q8W8JZB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.889084, - 42.738149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVLIOS1NEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28424, - 48.1954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYXETA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43771407, - 49.05467492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBMZWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43781, - 49.054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBMZWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424128, - 48.326655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMRQ8DJXDD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85657597, - 46.81367492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U8FM0DWWX8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27165, - 48.828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUERDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27165, - 48.828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUERDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27165, - 48.828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUERDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27165, - 48.828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUERDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67585831, - 44.84853261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOTAXM1N9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67585831, - 44.84853261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZBOTAXM1N9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85657597, - 46.81367492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U8FM0DWWX8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.457815, - 48.410504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYJXOYUE86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.135993, - 45.642895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BII1ZEOITL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.135993, - 45.642895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BII1ZEOITL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.529003, - 45.847791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEL3NQFHW0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.529003, - 45.847791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEL3NQFHW0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.457815, - 48.410504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYJXOYUE86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424128, - 48.326655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMRQ8DJXDD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390306, - 43.87983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGTXAAQTG7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390306, - 43.87983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGTXAAQTG7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.732935, - 48.582848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTMKTM7ROT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75628, - 48.5812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMADJK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.57666, - -17.7401472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PX8CCIXVTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402931, - 48.630265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZOJVYBGVNI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402931, - 48.630265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZOJVYBGVNI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86179, - 45.7196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDNDRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75179, - 48.578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNHGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75179, - 48.578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNHGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75179, - 48.578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNHGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75179, - 48.578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNHGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.57666, - -17.7401472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PX8CCIXVTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95577706, - 45.05030241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZLOEP13R8Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95577706, - 45.05030241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZLOEP13R8Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9547898, - 46.57495515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G6EQG69JYG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37212484, - 47.56237043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEIHBKLJME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34557791, - 47.04787699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDGJQAA0FT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34557791, - 47.04787699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PDGJQAA0FT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70260771, - 46.85125182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGALU8RLGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70260771, - 46.85125182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGALU8RLGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9547898, - 46.57495515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G6EQG69JYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 166.4454, - -22.1962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SI2KB9XGYR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 166.4454, - -22.1962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SI2KB9XGYR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75179, - 48.578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUNHGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75628, - 48.5812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMADJK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.732935, - 48.582848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTMKTM7ROT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74903, - 48.5856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAHGUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780682, - 48.571507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTMBQ1VMJY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780682, - 48.571507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTMBQ1VMJY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780682, - 48.571507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTMBQ1VMJY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7635538, - 48.59868515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KKQLE6INYX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7635538, - 48.59868515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KKQLE6INYX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74836, - 48.5814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUCZWJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74836, - 48.5814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUCZWJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73573, - 48.5787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJMNZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73573, - 48.5787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJMNZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73573, - 48.5787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJMNZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73573, - 48.5787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJMNZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73573, - 48.5787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJMNZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73573, - 48.5787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJMNZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74958, - 48.5756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKNGDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74958, - 48.5756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKNGDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780682, - 48.571507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTMBQ1VMJY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780682, - 48.571507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTMBQ1VMJY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74903, - 48.5856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAHGUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74903, - 48.5856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAHGUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74903, - 48.5856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAHGUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74903, - 48.5856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAHGUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76866, - 48.6005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJGZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28424, - 48.1954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYXETA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171193, - 44.505702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JLDOS4PD2H", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.171193, - 44.505702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JLDOS4PD2H", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.993125, - 50.470262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJRJT8ZFIK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.124967, - 50.692625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9E3AHO598", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.124967, - 50.692625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9E3AHO598", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.124967, - 50.692625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9E3AHO598", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.124967, - 50.692625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9E3AHO598", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.847807, - 43.935768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GID8GC3XH5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.847807, - 43.935768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GID8GC3XH5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13683557, - 45.74877581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUMNVVMJLC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13683557, - 45.74877581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUMNVVMJLC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13683557, - 45.74877581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUMNVVMJLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.993125, - 50.470262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJRJT8ZFIK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68619721, - 43.34195984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIRPBLPGGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68619721, - 43.34195984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIRPBLPGGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.137626, - 43.517815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIPTHVIZZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126213, - 43.517403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROA62NCPNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126149, - 43.5169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJPMFY9VDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.136678, - 43.518713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UK5JQUMRGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13157, - 43.518561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDIEUSSXCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.135843, - 43.521069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DK6XS3IOSC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12670173, - 43.52180774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCNTJBOJ10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126527, - 43.520648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWJJ5SAPNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68619721, - 43.34195984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIRPBLPGGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126213, - 43.517403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROA62NCPNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126149, - 43.5169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJPMFY9VDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.136678, - 43.518713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UK5JQUMRGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29667692, - 43.25221254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAXW4NUFVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29667692, - 43.25221254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TAXW4NUFVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68619721, - 43.34195984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIRPBLPGGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.137626, - 43.517815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HIPTHVIZZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.042465, - 48.720608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3NYJVVV4C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.042465, - 48.720608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3NYJVVV4C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77243, - 49.4121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZNSAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93139, - 46.896513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUD6RZJTTH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126527, - 43.520648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWJJ5SAPNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12670173, - 43.52180774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCNTJBOJ10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.991944, - 43.609892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GYNIQ5AGRO", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22644, - 43.3354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCGJJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.389648, - 47.932087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXWOUAPF4B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.389648, - 47.932087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXWOUAPF4B", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370512, - 48.898419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBVONDUIIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370512, - 48.898419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBVONDUIIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.174655, - 47.967881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWMLUQHPM0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.174655, - 47.967881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWMLUQHPM0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.174655, - 47.967881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWMLUQHPM0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.26321514, - 43.37836832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LR8TGUULFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.26321514, - 43.37836832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LR8TGUULFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.139421, - 14.650675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B9F5WIHHBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.139421, - 14.650675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B9F5WIHHBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03207657, - 48.28769415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBFZECLLXJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65079, - 48.7963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RSX0LEKBQ0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255949, - 43.366492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I4HXYDCXJI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22644, - 43.3354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCGJJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.135843, - 43.521069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DK6XS3IOSC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22644, - 43.3354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HCGJJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.063254, - 48.901667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEGFTTHMH7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05438991, - 48.90910377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAFQ9DQN6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.057466, - 48.9158465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPA4ATRQ2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05438991, - 48.90910377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAFQ9DQN6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05438991, - 48.90910377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAFQ9DQN6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05438991, - 48.90910377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAFQ9DQN6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0398713, - 48.9124041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXSL0B2ANU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0398713, - 48.9124041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXSL0B2ANU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05588657, - 48.90372981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJMFK5BNOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0706, - 48.896979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWBYBTAJPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0706, - 48.896979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWBYBTAJPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.13157, - 43.518561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDIEUSSXCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.063254, - 48.901667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEGFTTHMH7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.057466, - 48.9158465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPA4ATRQ2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05588657, - 48.90372981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HJMFK5BNOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.057684, - 48.89498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2PTEQVKWN", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05778082, - 48.902702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PEUJAWCTR7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.059093, - 48.91675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYJ7I0FGEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05778082, - 48.902702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PEUJAWCTR7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05049997, - 48.9043635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMFEQ90JG9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.057684, - 48.89498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2PTEQVKWN", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053305, - 48.904986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZU8ZFBXXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053305, - 48.904986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IZU8ZFBXXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.059093, - 48.91675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYJ7I0FGEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05049997, - 48.9043635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMFEQ90JG9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0518438, - 48.900334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLPPL4XTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37212484, - 47.56237043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XEIHBKLJME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66796, - 48.7626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUQNWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5489767, - 45.4430808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DUSXJL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5257373, - 43.47749826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G009CV3ZJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19375685, - 48.56437512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAS701RIZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19375685, - 48.56437512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAS701RIZP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5257373, - 43.47749826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G009CV3ZJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52677745, - 43.47698053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCPEWRGL9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672, - 48.7617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EACLKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52677745, - 43.47698053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCPEWRGL9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.081, - 50.3602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJYG7SXQC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.369991039, - 48.94491689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6VI5YO8DJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.369991039, - 48.94491689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6VI5YO8DJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.369991039, - 48.94491689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6VI5YO8DJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.369991039, - 48.94491689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6VI5YO8DJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52677745, - 43.47698053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCPEWRGL9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52677745, - 43.47698053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCPEWRGL9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59205757, - 49.20641115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQKELHNRP6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.170972, - 45.742189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPU6IRJFBD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.170972, - 45.742189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPU6IRJFBD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.957887, - 49.045931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WS9TVOAQQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-19:00", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.051158, - 43.998829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ40WJN92QMZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.051158, - 43.998829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ40WJN92QMZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.135813, - 49.241206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKHOBW49HF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.135813, - 49.241206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKHOBW49HF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.128633, - 49.244048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA02FFLDQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.128633, - 49.244048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA02FFLDQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133887, - 49.242705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWOOPFQ7NB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.116171, - 49.26076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YMMBPBLYAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.116171, - 49.26076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YMMBPBLYAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133955, - 49.258667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAEFOK9R0M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133955, - 49.258667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAEFOK9R0M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115187, - 49.262486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XF0FLNMPLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115187, - 49.262486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XF0FLNMPLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.142379, - 49.260981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FEZQDELCUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.957887, - 49.045931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WS9TVOAQQE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-19:00", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48251118, - 43.31089191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEM0MZEHDY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.170972, - 45.742189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPU6IRJFBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48279, - 48.4614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KTXKVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48279, - 48.4614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KTXKVX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4151938, - 43.4503553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXPD2AT8JS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4151938, - 43.4503553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXPD2AT8JS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48251118, - 43.31089191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEM0MZEHDY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09934109, - 43.10751972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BC9AMA977O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.70402909, - -21.033494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWGRIN70CW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43574225, - 48.21888515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBPNNPSUZB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43574225, - 48.21888515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBPNNPSUZB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03216, - 43.77025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDFNGFYIU3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03216, - 43.77025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDFNGFYIU3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74199, - 47.8454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVDFEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94359, - 46.01605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P7EPOMTVSO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94359, - 46.01605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P7EPOMTVSO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.73300206, - 46.11365738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEZIJLLV8J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5489767, - 45.4430808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DUSXJL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.73300206, - 46.11365738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEZIJLLV8J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677733, - 45.3928606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMNJBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56515, - 45.3977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRBEQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19265547, - 45.96356828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HQNSJ8DLJY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19265547, - 45.96356828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HQNSJ8DLJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19265547, - 45.96356828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HQNSJ8DLJY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74199, - 47.8454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVDFEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.70402909, - -21.033494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWGRIN70CW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.428157, - 43.205176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VZL9GPAYNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80567, - 48.801111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPMK6CLAK8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80567, - 48.801111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPMK6CLAK8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80567, - 48.801111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPMK6CLAK8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.80567, - 48.801111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPMK6CLAK8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36049115, - 47.76684383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCQYLGSCIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36049115, - 47.76684383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCQYLGSCIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36049115, - 47.76684383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCQYLGSCIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36049115, - 47.76684383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCQYLGSCIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70760946, - 48.71133565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ELC41U7R0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70760946, - 48.71133565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ELC41U7R0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42200623, - 48.20786571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z5YMICU46B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.142379, - 49.260981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FEZQDELCUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.135813, - 49.241206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCRUCZZRMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133887, - 49.242705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWOOPFQ7NB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020973, - 47.893798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKS0FGLKUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8961, - 47.89256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PBVWXODJGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90126, - 47.90074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6GJEEHANQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.968126, - 47.832466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SDVWXZW1J4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.81417, - 47.94254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDQIJPJMNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.910195, - 47.905229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H5QTPJILRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.909853, - 47.905313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSUDUL9MIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9046868, - 47.9028761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MH4YHU6SK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.910526, - 47.905144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXRRLVQJLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95514, - 47.87808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RG6TILUNOU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8339996, - 47.8867824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMFVTC5INF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.873796, - 47.884736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWXYTVBPSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94856, - 47.93718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUGYSMFOZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87386, - 47.9508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJGJFQZ0RB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96998, - 47.91192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZE0R0CX2I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83385, - 47.86555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EF6ASZTSVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046781, - 47.87412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVHCOYXT0Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96998, - 47.91192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PZE0R0CX2I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.910195, - 47.905229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H5QTPJILRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.81417, - 47.94254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDQIJPJMNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.909853, - 47.905313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSUDUL9MIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9025136, - 47.9053752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FGU7G4ZMF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9030715, - 47.9039133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O075GC5TMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.968126, - 47.832466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SDVWXZW1J4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95514, - 47.87808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RG6TILUNOU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83385, - 47.86555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EF6ASZTSVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9046868, - 47.9028761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MH4YHU6SK6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.910526, - 47.905144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXRRLVQJLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90126, - 47.90074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6GJEEHANQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8961, - 47.89256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PBVWXODJGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.93456, - 47.88026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSZFHCDE65", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.873796, - 47.884736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWXYTVBPSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87386, - 47.9508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJGJFQZ0RB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87737, - 47.911473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZIWOWMFJOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.93456, - 47.88026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSZFHCDE65", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.972238, - 47.966138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T0XMNJU9T9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.046781, - 47.87412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVHCOYXT0Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82654, - 47.919474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEAGBEULR4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79546, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1LX7U3SHG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79759, - 45.3555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZAVKETLCQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79759, - 45.3555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZAVKETLCQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79546, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1LX7U3SHG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79546, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1LX7U3SHG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79658, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWFXPQAB4Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79658, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWFXPQAB4Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79658, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWFXPQAB4Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79658, - 45.3585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWFXPQAB4Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71334804, - 48.55099453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVUDFL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71334804, - 48.55099453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVUDFL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6335347, - 47.23003877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHSA5KVF5H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6335347, - 47.23003877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHSA5KVF5H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6335347, - 47.23003877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHSA5KVF5H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672, - 48.7617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EACLKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79693, - 45.3564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PP3BZRYFVB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79759, - 45.3555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZAVKETLCQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79693, - 45.3564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PP3BZRYFVB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8911351, - 47.8634133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWO1HTGHLY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05386, - 47.89206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRINLM4J90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986572, - 47.900234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHVKIMCLPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9109, - 47.93292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GI557RXISG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.010412, - 47.922145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCKN0ZQ234", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.010412, - 47.922145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCKN0ZQ234", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01551, - 47.95631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXDKXFFZNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9030715, - 47.9039133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O075GC5TMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8911351, - 47.8634133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KWO1HTGHLY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.89790996, - 47.86552972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S7VYUHK4NE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.972238, - 47.966138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T0XMNJU9T9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9025136, - 47.9053752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FGU7G4ZMF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01551, - 47.95631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXDKXFFZNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82654, - 47.919474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEAGBEULR4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05386, - 47.89206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRINLM4J90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.89790996, - 47.86552972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S7VYUHK4NE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87737, - 47.911473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZIWOWMFJOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.135813, - 49.241206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCRUCZZRMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98951742, - 43.13459182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3DAUXRW4P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.095098, - 49.254606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USZMAL05ZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08759241, - 49.25176688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSSSZNZRAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08759241, - 49.25176688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSSSZNZRAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078122, - 49.241255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSV6PWXBFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078122, - 49.241255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSV6PWXBFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.095098, - 49.254606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZNBCSN6ZPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.095098, - 49.254606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "USZMAL05ZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.095098, - 49.254606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZNBCSN6ZPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09338565, - 49.25121681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGQZODB2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.105362, - 49.237622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJUO57LEEY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.105362, - 49.237622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJUO57LEEY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09338565, - 49.25121681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGQZODB2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.99012892, - 43.13476798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LEH2TPO0J7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98951742, - 43.13459182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3DAUXRW4P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98951742, - 43.13459182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3DAUXRW4P", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08759241, - 49.25176688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSSSZNZRAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08759241, - 49.25176688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSSSZNZRAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.103962, - 49.22553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KR6PZL5IRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992456, - 49.225382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z4Q5I7BYZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13890704, - 49.24803182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DGUY2HD3PH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13890704, - 49.24803182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DGUY2HD3PH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13890704, - 49.24803182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DGUY2HD3PH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13890704, - 49.24803182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DGUY2HD3PH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.982398, - 49.225893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IB0HMQS0YP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992456, - 49.225382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z4Q5I7BYZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.982398, - 49.225893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IB0HMQS0YP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.103962, - 49.22553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KR6PZL5IRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.999234, - 49.217628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFZ3TXLMC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.999234, - 49.217628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFZ3TXLMC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.057693, - 49.216961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNOIXUVWZ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.057693, - 49.216961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNOIXUVWZ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.100422, - 49.225945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UIWGGGBRB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.100422, - 49.225945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UIWGGGBRB8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98951742, - 43.13459182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3DAUXRW4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1361313, - 45.76525364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJTASUUHDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9109, - 47.93292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GI557RXISG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.135937, - 45.765259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJTASUUHDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87623698, - 47.04568014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R5WTOSEIZZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87623698, - 47.04568014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R5WTOSEIZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65052128, - 45.75208481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSYDHOQJJU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65052128, - 45.75208481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSYDHOQJJU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65052128, - 45.75208481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSYDHOQJJU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65052128, - 45.75208481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSYDHOQJJU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.903664, - 47.916515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCW6UDGKOZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.903664, - 47.916515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCW6UDGKOZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.903664, - 47.916515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BCW6UDGKOZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8339996, - 47.8867824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NMFVTC5INF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94856, - 47.93718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUGYSMFOZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.986572, - 47.900234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHVKIMCLPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020973, - 47.893798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKS0FGLKUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1361313, - 45.76525364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJTASUUHDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.135937, - 45.765259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJTASUUHDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212125, - 48.912135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07402, - 45.889034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQMXNLPGD7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07402, - 45.889034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQMXNLPGD7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8366292, - 47.07524849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OA04A96XNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36821393, - 48.90413143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCJWZZ6OLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37998112, - 48.89706454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYWTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94082796, - 47.71970516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGPNLAOCAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.42513259, - 43.6455718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAMGXB1VA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.42513259, - 43.6455718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAMGXB1VA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67113874, - 44.1818174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYJZUKWZHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67113874, - 44.1818174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYJZUKWZHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67113874, - 44.1818174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYJZUKWZHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67113874, - 44.1818174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYJZUKWZHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42826847, - 50.12985016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YOTRGWFRUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4145895, - 46.33485885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCAJTARK3I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-18:30", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4145895, - 46.33485885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCAJTARK3I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-18:30", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.42513259, - 43.6455718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAMGXB1VA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.42513259, - 43.6455718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WFAMGXB1VA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.72378857, - 47.2367842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWWWTFPIOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27879131, - 49.64119521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLN1E5ASLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27879131, - 49.64119521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLN1E5ASLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28205855, - 45.5318271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMSVTLL4KF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28205855, - 45.5318271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMSVTLL4KF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28205855, - 45.5318271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMSVTLL4KF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28205855, - 45.5318271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMSVTLL4KF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28205855, - 45.5318271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMSVTLL4KF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28205855, - 45.5318271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMSVTLL4KF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13143985, - 45.83580508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VE2SNJRWXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5IED349PE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5IED349PE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5IED349PE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08726284, - 48.2001145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFYOQREIHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08726284, - 48.2001145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFYOQREIHG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08726284, - 48.2001145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFYOQREIHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08726284, - 48.2001145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IFYOQREIHG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.15069214, - 48.12488625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UYYBBC9H8B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.740703, - 45.425126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YYJ7KQJT6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.740703, - 45.425126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YYJ7KQJT6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.740703, - 45.425126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YYJ7KQJT6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25665585, - 49.15548873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJPQZ2JJPW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25665585, - 49.15548873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJPQZ2JJPW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25665585, - 49.15548873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJPQZ2JJPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDCTMIKNGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDCTMIKNGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5IED349PE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25665585, - 49.15548873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJPQZ2JJPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5IED349PE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.168861, - 47.793686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5IED349PE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16551303, - 47.79450475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKTY6ATECR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27879131, - 49.64119521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLN1E5ASLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27879131, - 49.64119521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLN1E5ASLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38717162, - 47.08218504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHA5BJRBDD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75343753, - 47.47545122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXNEVQRIEC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16893921, - 44.40991852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJUHLGDXWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16893921, - 44.40991852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJUHLGDXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16893921, - 44.40991852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJUHLGDXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16893921, - 44.40991852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJUHLGDXWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16893921, - 44.40991852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJUHLGDXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16893921, - 44.40991852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJUHLGDXWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75343753, - 47.47545122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXNEVQRIEC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75343753, - 47.47545122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXNEVQRIEC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75343753, - 47.47545122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KXNEVQRIEC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38717162, - 47.08218504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHA5BJRBDD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88157, - 44.9596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTM9WEDT93", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.740703, - 45.425126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YYJ7KQJT6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.72378857, - 47.2367842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWWWTFPIOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45208043, - 48.64571592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U5VKNYZZH8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91940238, - 47.94408873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBQHPADN4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91940238, - 47.94408873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBQHPADN4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91940238, - 47.94408873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBQHPADN4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11928029, - 49.30662926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNFNXLNAJV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.72378857, - 47.2367842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWWWTFPIOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07824542, - 47.4360704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDMHCEAKTI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07824542, - 47.4360704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDMHCEAKTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07824542, - 47.4360704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDMHCEAKTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65832098, - 48.42879477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFYFEZAQNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65832098, - 48.42879477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFYFEZAQNO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65832098, - 48.42879477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFYFEZAQNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65832098, - 48.42879477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFYFEZAQNO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65832098, - 48.42879477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFYFEZAQNO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65832098, - 48.42879477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFYFEZAQNO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91940238, - 47.94408873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBQHPADN4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91940238, - 47.94408873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBQHPADN4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.91940238, - 47.94408873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NBQHPADN4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5057343, - 42.44829656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CUECDGTUQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88858, - 48.6986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GILDOVEZFC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88858, - 48.6986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GILDOVEZFC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88858, - 48.6986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GILDOVEZFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88858, - 48.6986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GILDOVEZFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36467022, - 49.7261819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0KOZZ2ARU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36467022, - 49.7261819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0KOZZ2ARU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82252126, - 46.46420899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5057343, - 42.44829656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CUECDGTUQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.605439, - 47.403165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKHA6QWCW9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.605439, - 47.403165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKHA6QWCW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.605439, - 47.403165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKHA6QWCW9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.605439, - 47.403165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKHA6QWCW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82252126, - 46.46420899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82252126, - 46.46420899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82106973, - 46.46429151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.82252126, - 46.46420899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUORMJVPMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07824542, - 47.4360704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDMHCEAKTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07824542, - 47.4360704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDMHCEAKTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07824542, - 47.4360704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDMHCEAKTI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38766148, - 47.70646222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDMLYUQSSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.8195264, - 48.19529571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPUUMBSESC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.8195264, - 48.19529571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPUUMBSESC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.8195264, - 48.19529571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPUUMBSESC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.8195264, - 48.19529571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PPUUMBSESC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38766148, - 47.70646222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDMLYUQSSU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38766148, - 47.70646222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDMLYUQSSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38766148, - 47.70646222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDMLYUQSSU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26441649, - 47.18261187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHAZIJAXIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.72378857, - 47.2367842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWWWTFPIOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26441649, - 47.18261187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHAZIJAXIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26441649, - 47.18261187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHAZIJAXIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26441649, - 47.18261187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHAZIJAXIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26441649, - 47.18261187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHAZIJAXIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26441649, - 47.18261187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHAZIJAXIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39134625, - 49.03762432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIGSJKBXAQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64296856, - 49.07614302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRA1F3Q2QE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46957587, - 46.83499718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKUSIH2KYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46957587, - 46.83499718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKUSIH2KYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46957587, - 46.83499718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKUSIH2KYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46957587, - 46.83499718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKUSIH2KYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46957587, - 46.83499718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKUSIH2KYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46957587, - 46.83499718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKUSIH2KYG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64296856, - 49.07614302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRA1F3Q2QE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08536519, - 49.00859509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1P794WYD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28119602, - 47.09754279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NJNRQHE26R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08536519, - 49.00859509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1P794WYD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08536519, - 49.00859509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1P794WYD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08536519, - 49.00859509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1P794WYD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47203872, - 48.25104791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1YCYKCLFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.17782179, - 47.01083247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F1FD6Q9XWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.17782179, - 47.01083247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F1FD6Q9XWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12198064, - 45.04544248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QK9VIQB32M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12198064, - 45.04544248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QK9VIQB32M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12198064, - 45.04544248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QK9VIQB32M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12198064, - 45.04544248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QK9VIQB32M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95592362, - 44.64292431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJQJUM9B3C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95592362, - 44.64292431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJQJUM9B3C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95592362, - 44.64292431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJQJUM9B3C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95592362, - 44.64292431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJQJUM9B3C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.89812, - 48.9298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3UNUSE4ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.89812, - 48.9298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3UNUSE4ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.89812, - 48.9298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3UNUSE4ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.89812, - 48.9298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S3UNUSE4ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88167512, - 48.18844301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAKVHCRJTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88167512, - 48.18844301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAKVHCRJTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88167512, - 48.18844301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAKVHCRJTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88167512, - 48.18844301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAKVHCRJTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17732201, - 48.65391331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUSUN2DQKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-20:00,Sa 08:00-20:00,Fr 08:00-20:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17732201, - 48.65391331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUSUN2DQKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-20:00,Sa 08:00-20:00,Fr 08:00-20:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17732201, - 48.65391331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUSUN2DQKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-20:00,Sa 08:00-20:00,Fr 08:00-20:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17732201, - 48.65391331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUSUN2DQKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-20:00,Sa 08:00-20:00,Fr 08:00-20:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.088952, - 48.398951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08745032, - 48.40887156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NKMNWNJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45767958, - 48.86253975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFEKUTTULE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45767958, - 48.86253975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFEKUTTULE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45767958, - 48.86253975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFEKUTTULE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45767958, - 48.86253975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFEKUTTULE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10758935, - 44.11759832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEWFZ6V02A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.01657703, - 47.40421428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZVJ9WGG12K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145051, - 45.746572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGR47RDIT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145051, - 45.746572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGR47RDIT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145051, - 45.746572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGR47RDIT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8222, - 49.2848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y0OSAKHGA8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8222, - 49.2848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y0OSAKHGA8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8222, - 49.2848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y0OSAKHGA8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8222, - 49.2848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y0OSAKHGA8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33766291, - 49.91268377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X2P436SZ2U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145051, - 45.746572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGR47RDIT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145051, - 45.746572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGR47RDIT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.145051, - 45.746572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGR47RDIT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.774255, - 49.612418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE4ZWF9SHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.44111853, - 42.66602431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXBSNOD426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4461115, - 44.83617327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXHA7QGZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4461115, - 44.83617327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXHA7QGZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4461115, - 44.83617327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXHA7QGZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4461115, - 44.83617327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXHA7QGZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4461115, - 44.83617327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXHA7QGZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4461115, - 44.83617327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OXHA7QGZKR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84331096, - 44.92429655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGZ64DHCH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84331096, - 44.92429655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGZ64DHCH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84331096, - 44.92429655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGZ64DHCH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84331096, - 44.92429655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGZ64DHCH9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95592362, - 44.64292431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJQJUM9B3C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95592362, - 44.64292431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AJQJUM9B3C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44558967, - 43.50467849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJFU0A6IJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.44111853, - 42.66602431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXBSNOD426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.44111853, - 42.66602431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXBSNOD426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.44111853, - 42.66602431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXBSNOD426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44558967, - 43.50467849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJFU0A6IJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44558967, - 43.50467849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJFU0A6IJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44558967, - 43.50467849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJFU0A6IJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44558967, - 43.50467849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJFU0A6IJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44558967, - 43.50467849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJFU0A6IJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43088091, - 50.365493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIYEOEVU2D", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84147316, - 50.19839846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSZIZOKFFF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75531417, - 50.48283163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGCAZGUM9A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3816455, - 44.59720568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL98XANBWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8417437, - 50.198508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMUMKDAJTR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8417437, - 50.198508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMUMKDAJTR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84147316, - 50.19839846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSZIZOKFFF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84147316, - 50.19839846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSZIZOKFFF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75531417, - 50.48283163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGCAZGUM9A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75765321, - 50.48235716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y7RR8FAT3Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75765321, - 50.48235716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y7RR8FAT3Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.575379, - 47.483878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OWQGWF0OGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75531417, - 50.48283163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGCAZGUM9A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84147316, - 50.19839846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSZIZOKFFF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84147316, - 50.19839846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSZIZOKFFF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84147316, - 50.19839846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSZIZOKFFF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70271636, - 48.23802276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU1YABC2MHX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70271636, - 48.23802276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU1YABC2MHX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70271636, - 48.23802276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU1YABC2MHX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70271636, - 48.23802276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU1YABC2MHX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70271636, - 48.23802276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU1YABC2MHX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70271636, - 48.23802276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU1YABC2MHX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46312491, - 48.41155645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYEDSCSTTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.58004253, - 47.79731994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAWNYUUG7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68989667, - 47.85978662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PLJGCICCQV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68989667, - 47.85978662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PLJGCICCQV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68989667, - 47.85978662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PLJGCICCQV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68989667, - 47.85978662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PLJGCICCQV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19355476, - 48.75647905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S2IIJS4XG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36467022, - 49.7261819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0KOZZ2ARU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70409613, - 48.36969308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P3UZJUWQJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70409613, - 48.36969308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P3UZJUWQJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70409613, - 48.36969308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P3UZJUWQJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70409613, - 48.36969308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P3UZJUWQJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58079788, - 49.64795518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAXIZNFOSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10322397, - 45.82316068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9REMMMQYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58967133, - 49.6477769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHEYYGZWWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:30", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.978028, - 44.48583474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VD9HES2EX5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.978028, - 44.48583474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VD9HES2EX5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.978028, - 44.48583474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VD9HES2EX5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.978028, - 44.48583474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VD9HES2EX5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.372855, - 46.68264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DV6PHDO51M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.372855, - 46.68264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DV6PHDO51M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58079788, - 49.64795518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAXIZNFOSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58967133, - 49.6477769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHEYYGZWWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:30", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58079788, - 49.64795518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAXIZNFOSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58079788, - 49.64795518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAXIZNFOSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.43276288, - 49.73437363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HL3QNBDPQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67904098, - 50.47633241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYQSQKGBPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83145571, - 48.3298175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDPI0FF7U9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67904098, - 50.47633241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYQSQKGBPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67904098, - 50.47633241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYQSQKGBPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.67904098, - 50.47633241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYQSQKGBPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41059155, - 46.33838782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPHL8KYUMW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40923015, - 46.3375545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GU3XHH5FGE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36077988, - 43.28039009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVQEOVVA6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.20923656, - 43.41121455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTSTFI6AAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10322397, - 45.82316068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9REMMMQYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87814407, - 48.93710762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI360U001X0NX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87814407, - 48.93710762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI360U001X0NX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87814407, - 48.93710762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI360U001X0NX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87814407, - 48.93710762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI360U001X0NX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.20923656, - 43.41121455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTSTFI6AAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.20923656, - 43.41121455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTSTFI6AAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.20923656, - 43.41121455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTSTFI6AAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02025, - 47.2802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2MLRX4ZEK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02025, - 47.2802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2MLRX4ZEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02025, - 47.2802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2MLRX4ZEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02025, - 47.2802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G2MLRX4ZEK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238647, - 44.516744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E23HKPXHU0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36077988, - 43.28039009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RVQEOVVA6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91944853, - 44.61754174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYW3BNYUDP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91854355, - 48.9573293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJGAVFF5GW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91594919, - 48.95876899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "INAACCIR9R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91854355, - 48.9573293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJGAVFF5GW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91854355, - 48.9573293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJGAVFF5GW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91854355, - 48.9573293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TJGAVFF5GW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22077205, - 44.20556967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV5IVJHUQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02973957, - 47.90055518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQQEZYTWL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02938061, - 47.9004567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNCX1RC4JP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02284172, - 47.89907447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRPP8IVUJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02284172, - 47.89907447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRPP8IVUJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40592341, - 47.93877206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L1KKD299J9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40592341, - 47.93877206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L1KKD299J9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77855612, - 48.49861058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBRK29KKAC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77855612, - 48.49861058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBRK29KKAC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77855612, - 48.49861058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBRK29KKAC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.77855612, - 48.49861058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YBRK29KKAC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02973957, - 47.90055518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQQEZYTWL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02973957, - 47.90055518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQQEZYTWL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02938061, - 47.9004567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNCX1RC4JP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5346073, - 48.58220745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCCDL67FO4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5346073, - 48.58220745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCCDL67FO4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02973957, - 47.90055518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQQEZYTWL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5346073, - 48.58220745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCCDL67FO4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5346073, - 48.58220745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCCDL67FO4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.91751857, - 48.17635366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMOWLNFECU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.91751857, - 48.17635366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMOWLNFECU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.91751857, - 48.17635366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMOWLNFECU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.91751857, - 48.17635366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMOWLNFECU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34803255, - 48.38331171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GIAIHIV8XR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35404564, - 46.56548395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWRHODBYDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35404564, - 46.56548395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWRHODBYDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7611361, - 48.53579815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKQI33EAGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22571194, - 44.82527227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W7KDI5HCIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.53047358, - 48.12114958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYFDYJESIX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.53047358, - 48.12114958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RYFDYJESIX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17138856, - 49.06052439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSMOIFZBLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22571194, - 44.82527227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W7KDI5HCIN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22571194, - 44.82527227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W7KDI5HCIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22571194, - 44.82527227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W7KDI5HCIN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61935996, - 44.81050006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTABXYFOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-20:00", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.22413016, - 46.64877332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWO9NBXWE4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.22413016, - 46.64877332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWO9NBXWE4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.00522909, - 47.10985352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HEDAVFNBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10322397, - 45.82316068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9REMMMQYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10322397, - 45.82316068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9REMMMQYE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.31497627, - 47.45070608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEPHSK0X97", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.31497627, - 47.45070608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEPHSK0X97", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.31497627, - 47.45070608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEPHSK0X97", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.31497627, - 47.45070608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEPHSK0X97", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33110231, - 50.36434323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M31REAHFB0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-19:30,Su 06:00-12:30", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10322397, - 45.82316068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9REMMMQYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3235812, - 49.84268062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATCMVSJYLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33110231, - 50.36434323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M31REAHFB0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-19:30,Su 06:00-12:30", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07420586, - 49.91226323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X4XISCA2J2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07420586, - 49.91226323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X4XISCA2J2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07420586, - 49.91226323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X4XISCA2J2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36859046, - 48.57543588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36859046, - 48.57543588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36859046, - 48.57543588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36859046, - 48.57543588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36859046, - 48.57543588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.36859046, - 48.57543588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4388861, - 45.45249078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGDLZYXS0Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07420586, - 49.91226323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X4XISCA2J2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.24040872, - 47.90261331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVW2LZTUA9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.24040872, - 47.90261331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVW2LZTUA9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.24040872, - 47.90261331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVW2LZTUA9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.24040872, - 47.90261331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVW2LZTUA9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4388861, - 45.45249078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGDLZYXS0Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4388861, - 45.45249078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGDLZYXS0Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4388861, - 45.45249078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGDLZYXS0Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06614609, - 43.15138995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8YVCQZTND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15082552, - 48.55487429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQJ0OJAZ1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700099, - 45.98354035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V5BA5FDJUH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36467022, - 49.7261819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0KOZZ2ARU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700099, - 45.98354035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V5BA5FDJUH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36467022, - 49.7261819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0KOZZ2ARU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36467022, - 49.7261819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L0KOZZ2ARU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36551805, - 49.72609867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMIX8ETSRI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700099, - 45.98354035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V5BA5FDJUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700099, - 45.98354035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V5BA5FDJUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94642684, - 43.65040657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6OD1KDAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7206684, - 44.78683159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVXNEXLOLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46967649, - 48.43008916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TADFEWONYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46967649, - 48.43008916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TADFEWONYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46994658, - 48.43078542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BL46XIQUQH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.46992334, - 48.43073859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNRKQHLAFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408368, - 48.399504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZZB9I4EIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03791806, - 49.51315177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIJ0TTT18I05", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03791806, - 49.51315177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIJ0TTT18I05", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03791806, - 49.51315177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIJ0TTT18I05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03791806, - 49.51315177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIJ0TTT18I05", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03791806, - 49.51315177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIJ0TTT18I05", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408368, - 48.399504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZZB9I4EIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408368, - 48.399504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZZB9I4EIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408368, - 48.399504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZZB9I4EIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133546, - 45.780771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMCLP8KZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47654804, - 46.80530308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOHBRNPVBT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47654804, - 46.80530308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOHBRNPVBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73548402, - 48.05367287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXCGZMJ0WQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33482504, - 47.83245411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MFHGZELL9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73548402, - 48.05367287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXCGZMJ0WQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73548402, - 48.05367287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXCGZMJ0WQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73548402, - 48.05367287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXCGZMJ0WQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73548402, - 48.05367287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXCGZMJ0WQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73548402, - 48.05367287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXCGZMJ0WQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06253811, - 46.63950321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U7TAQTYQRD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47654804, - 46.80530308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOHBRNPVBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06253811, - 46.63950321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U7TAQTYQRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06253811, - 46.63950321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U7TAQTYQRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06253811, - 46.63950321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U7TAQTYQRD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06253811, - 46.63950321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U7TAQTYQRD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06253811, - 46.63950321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U7TAQTYQRD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47654804, - 46.80530308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MOHBRNPVBT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408368, - 48.399504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZZB9I4EIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.408368, - 48.399504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZZB9I4EIY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33482504, - 47.83245411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MFHGZELL9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01433123, - 46.85754993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S8BGCQIRE8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22248369, - 43.07297112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STGP4YXUIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26550488, - 49.14339336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESUZWRLXFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26550488, - 49.14339336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESUZWRLXFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86452709, - 50.44629974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4PSSV51LQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86452709, - 50.44629974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4PSSV51LQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86452709, - 50.44629974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U4PSSV51LQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10322397, - 45.82316068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9REMMMQYE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22248369, - 43.07297112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STGP4YXUIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43093846, - 50.36551557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OOAD2XGWNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43093846, - 50.36551557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OOAD2XGWNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92415692, - 45.28977905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSN0XM5KUX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01433123, - 46.85754993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S8BGCQIRE8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01433123, - 46.85754993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S8BGCQIRE8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01433123, - 46.85754993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S8BGCQIRE8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92415692, - 45.28977905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSN0XM5KUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92415692, - 45.28977905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSN0XM5KUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92415692, - 45.28977905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSN0XM5KUX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12089792, - 45.04597649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHLQ03DZIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33482504, - 47.83245411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MFHGZELL9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33482504, - 47.83245411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MFHGZELL9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37042547, - 48.57633739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HINBFLC45F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77707723, - 49.35859995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTSPFG0NRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77707723, - 49.35859995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTSPFG0NRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77707723, - 49.35859995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTSPFG0NRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77707723, - 49.35859995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZTSPFG0NRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.92669753, - 44.20242742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W9UNHTTQOI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12757874, - 45.76126962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLTQGIT4ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12757874, - 45.76126962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLTQGIT4ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12757874, - 45.76126962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLTQGIT4ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12757874, - 45.76126962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLTQGIT4ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12757874, - 45.76126962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLTQGIT4ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12757874, - 45.76126962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QLTQGIT4ND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.56037166, - -20.8976211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVOX3RW4SD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.25399043, - 44.54360624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBRG7YCKY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16716476, - 46.17291786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGK8IODLYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.514001, - 48.459639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGDRVNGNWU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45208043, - 48.64571592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U5VKNYZZH8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37998112, - 48.89706454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYWTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6518, - 49.5675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSGKWN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6158, - 49.6079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQDHZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6158, - 49.6079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQDHZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3118, - 49.3772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFTXEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32848, - 49.3846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCYCFG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8031, - 49.6091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCXCXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25383, - 49.6405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKHFNX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8031, - 49.6091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCXCXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32436, - 49.3836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PKKBDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12904419, - 49.70972449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAWKEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41583, - 49.9463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGHFWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1684, - 49.3714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KRHRFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31728, - 49.3766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQUNQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73206, - 49.4418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTKRJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45166, - 49.9863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DGNAYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24542, - 49.7334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXKPDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6518, - 49.5675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FSGKWN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32848, - 49.3846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCYCFG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32435, - 49.3863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissbara", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62776, - 49.5621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laondepart", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66558, - 49.4688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVRWMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32148, - 49.3821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHXCZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32809, - 49.3858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NAQYGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32809, - 49.3858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NAQYGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3263, - 49.3816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZGRQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3263, - 49.3816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZGRQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36856, - 49.6619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUDGAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55191, - 49.4706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTEXJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55191, - 49.4706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTEXJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29831, - 49.8406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCMZBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29831, - 49.8406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCMZBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62776, - 49.5621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laondepart", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32626, - 49.3776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDKQWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32626, - 49.3776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDKQWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32638, - 49.3943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYHWSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45238, - 49.6848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJASVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45238, - 49.6848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJASVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41583, - 49.9463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGHFWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5152, - 49.604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGYBXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.63055, - 49.8988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBQMXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33628, - 49.3705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSTCSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33628, - 49.3705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSTCSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45854, - 49.7964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQYPER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45854, - 49.7964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DQYPER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45166, - 49.9863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DGNAYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.63055, - 49.8988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RBQMXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32638, - 49.3943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYHWSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31728, - 49.3766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQUNQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29519, - 49.8596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRAUNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30409, - 49.8426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSKTTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3065, - 49.8348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEZJPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30409, - 49.8426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSKTTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44305, - 48.8956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "epineboispar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39148, - 49.0662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XUTMPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30091, - 49.8338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFEUKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5945, - 49.5764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laonbesny", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32436, - 49.3836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PKKBDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12904419, - 49.70972449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GAWKEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5152, - 49.604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGYBXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.88593, - 49.571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCNFVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.88593, - 49.571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCNFVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3531, - 49.2699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRYCFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36811, - 49.2043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSVAFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36811, - 49.2043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSVAFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1684, - 49.3714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KRHRFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32106, - 49.3749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJZZXM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24542, - 49.7334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXKPDJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32106, - 49.3749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJZZXM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30091, - 49.8338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZFEUKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36856, - 49.6619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUDGAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29519, - 49.8596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRAUNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5945, - 49.5764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laonbesny", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66558, - 49.4688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVRWMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32148, - 49.3821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHXCZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3118, - 49.3772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NFTXEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3179, - 49.8363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRMSRP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.38869, - 49.0494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDGPWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33537, - 49.3826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c6d45d4a8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.38132, - 49.5948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c8daa8451", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69635, - 50.0074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCCJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31505, - 49.3662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c7ea4dba6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33537, - 49.3826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c6d45d4a8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31505, - 49.3662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c7ea4dba6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64527, - 49.9055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXWQPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55776, - 49.4898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MZQNJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26515, - 49.8561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBFAVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.91678, - 49.9735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWFLZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28329, - 49.8457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYSVEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.91678, - 49.9735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZWFLZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26515, - 49.8561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBFAVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55776, - 49.4898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MZQNJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64527, - 49.9055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXWQPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.38869, - 49.0494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDGPWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69635, - 50.0074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCCJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19489, - 49.022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "589d892331c0c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47162, - 49.4336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTQZUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08333333, - 49.91444444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TREUU2CJ9Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.01524, - 49.6965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZPKRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.01524, - 49.6965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZPKRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62777, - 49.9044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWNXPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19489, - 49.022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "589d892331c0c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6109, - 49.5612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTPERS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40779, - 49.0367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQMEHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12694, - 49.372487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DICCAMLZZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12694, - 49.372487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DICCAMLZZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11404, - 49.3983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Monlengar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6109, - 49.5612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTPERS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11404, - 49.3983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Monlengar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89959, - 49.4032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDBAEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3179, - 49.8363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QRMSRP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26519, - 49.8561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBFAVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22083, - 49.6128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRHVFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26519, - 49.8561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QBFAVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29522, - 49.8501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAYFWR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.335, - 49.3587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDJSBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.335, - 49.3587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDJSBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54107, - 49.3652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRCRLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22555, - 49.7561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb3ece5680", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54107, - 49.3652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CRCRLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44043, - 49.3845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAYSJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2659, - 49.8356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYHQKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22083, - 49.6128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RRHVFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44043, - 49.3845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAYSJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2659, - 49.8356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYHQKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32651, - 49.3792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBJVJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32651, - 49.3792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBJVJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39553, - 49.3902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGWUQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39553, - 49.3902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGWUQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25982, - 49.1706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSXCNB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51623, - 49.4105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUPFYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25982, - 49.1706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSXCNB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33263, - 49.3874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHKZDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51623, - 49.4105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUPFYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32963, - 49.3759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESQSQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32963, - 49.3759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESQSQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30527, - 49.3807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACFGRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31164, - 49.3814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QTNYBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30527, - 49.3807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACFGRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08169, - 49.2414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZNXLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29522, - 49.8501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CAYFWR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33663, - 49.3886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBDYVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33663, - 49.3886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBDYVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89959, - 49.4032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MDBAEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33263, - 49.3874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHKZDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31164, - 49.3814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QTNYBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.38132, - 49.5948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c8daa8451", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44305, - 48.8956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "epineboispar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60313, - 49.55677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laonfoch", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55516881, - 42.21474029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1F885A2LS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55516881, - 42.21474029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1F885A2LS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55516881, - 42.21474029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1F885A2LS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55516881, - 42.21474029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1F885A2LS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55516881, - 42.21474029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1F885A2LS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.22030274, - 47.90274394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XAIIQFT7IW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32486224, - 46.49628283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSJIQWEZ6G", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32486224, - 46.49628283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QSJIQWEZ6G", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63860668, - 43.95013839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJO5868P4K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:30-18:30", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.553523, - 42.157101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DS2ZKBGWPN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.552278, - 42.160753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGFTMLOCNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.552278, - 42.160753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGFTMLOCNC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.552278, - 42.160753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGFTMLOCNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.552278, - 42.160753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGFTMLOCNC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.553523, - 42.157101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DS2ZKBGWPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.55516881, - 42.21474029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X1F885A2LS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03379187, - 42.57529937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRK1CDAXWF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3065, - 49.8348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEZJPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2065939, - 43.65908238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTIOCISWLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17431, - 49.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "metzcat", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.68692541, - 48.53113555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QZGNESQT2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.68692541, - 48.53113555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QZGNESQT2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.018832, - 49.486412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M3QO1Y3NBX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43950231, - 43.63320379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITD8L7L5KT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43950231, - 43.63320379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ITD8L7L5KT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.92311, - 48.7593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AA86CZDAIR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 10:00-14:00", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.92311, - 48.7593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AA86CZDAIR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 10:00-14:00", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.92311, - 48.7593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AA86CZDAIR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 10:00-14:00", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.92311, - 48.7593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AA86CZDAIR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 10:00-14:00", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19986463, - 44.0331341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQ1TNKNZLU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19986463, - 44.0331341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQ1TNKNZLU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66828015, - 50.23791785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JL2912T1FX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2065939, - 43.65908238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTIOCISWLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2065939, - 43.65908238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTIOCISWLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.41141694, - 44.43387149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSYP1FUAQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.41141694, - 44.43387149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSYP1FUAQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.41141694, - 44.43387149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSYP1FUAQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.41141694, - 44.43387149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSYP1FUAQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52996847, - 43.49045736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GY3ENDUNAL", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52996847, - 43.49045736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GY3ENDUNAL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52996847, - 43.49045736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GY3ENDUNAL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52996847, - 43.49045736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GY3ENDUNAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52996847, - 43.49045736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GY3ENDUNAL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069095, - 43.623003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCEEY592G4", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069095, - 43.623003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCEEY592G4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069095, - 43.623003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCEEY592G4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069095, - 43.623003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCEEY592G4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.069095, - 43.623003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCEEY592G4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.541409, - 43.477967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHOHHOBGVO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-19:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.541409, - 43.477967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHOHHOBGVO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-19:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.541409, - 43.477967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHOHHOBGVO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-19:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.541409, - 43.477967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHOHHOBGVO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-19:00", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.541409, - 43.477967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHOHHOBGVO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-19:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19029424, - 47.87876097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSATF07ZM0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19029424, - 47.87876097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSATF07ZM0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19029424, - 47.87876097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSATF07ZM0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744058, - 44.468806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAFCVFAWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.578482, - 48.879555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDWPWURGFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26803271, - 44.39123414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZFERVLS6W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26803271, - 44.39123414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZFERVLS6W", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09837296, - 47.45462025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S141EGXVGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.09837296, - 47.45462025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S141EGXVGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744058, - 44.468806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAFCVFAWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744058, - 44.468806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAFCVFAWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56440864, - 46.64140412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1HDD2GWRT7N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744058, - 44.468806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QAFCVFAWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29787, - 47.961414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDHE3VJJY9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29787, - 47.961414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YDHE3VJJY9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56440864, - 46.64140412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1HDD2GWRT7N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56440864, - 46.64140412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1HDD2GWRT7N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56440864, - 46.64140412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI1HDD2GWRT7N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17431, - 49.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "metzcat", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9622, - 49.063363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEYJUE0LKV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9622, - 49.063363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEYJUE0LKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.208492, - 48.1096611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X8A9OQR4ED", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39139, - 49.0662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XUTMPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25383, - 49.6405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKHFNX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39139, - 49.0662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XUTMPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32277, - 48.9656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UFFXNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32277, - 48.9656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UFFXNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62901, - 49.5643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPQRYN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28601, - 49.839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHRSQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62901, - 49.5643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPQRYN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28601, - 49.839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AHRSQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73206, - 49.4418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PTKRJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3195, - 49.3919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissjeudarc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62777, - 49.8986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUFZHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62036, - 49.5648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GERAYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32435, - 49.3863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissbara", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62036, - 49.5648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GERAYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.147, - 49.3877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVZDTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3195, - 49.3919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissjeudarc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62777, - 49.8986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUFZHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29915, - 49.3799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Mercinbains", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39148, - 49.0662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XUTMPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65554508, - 49.99203596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "belleusetp", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29915, - 49.3799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Mercinbains", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29915, - 49.3799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Mercinbains", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29915, - 49.3799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Mercinbains", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60313, - 49.55677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laonfoch", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32898, - 49.4003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCMMEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30814, - 49.9971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "beaurevoircdg", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32898, - 49.4003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QCMMEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09269, - 49.373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Montilengvau", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09269, - 49.373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Montilengvau", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65554508, - 49.99203596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "belleusetp", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30814, - 49.9971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "beaurevoircdg", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.147, - 49.3877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SVZDTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.208492, - 48.1096611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X8A9OQR4ED", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41643188, - 48.85224905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9622, - 49.063363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEYJUE0LKV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41643188, - 48.85224905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35470347, - 48.98087537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQJI8TT2HQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35470347, - 48.98087537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQJI8TT2HQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35470347, - 48.98087537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQJI8TT2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35470347, - 48.98087537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQJI8TT2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35470347, - 48.98087537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQJI8TT2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35470347, - 48.98087537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZQJI8TT2HQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08473895, - 49.23618569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJWNEXIN5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08473895, - 49.23618569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJWNEXIN5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08473895, - 49.23618569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJWNEXIN5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08473895, - 49.23618569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJWNEXIN5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08473895, - 49.23618569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJWNEXIN5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08473895, - 49.23618569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THJWNEXIN5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9622, - 49.063363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEYJUE0LKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9622, - 49.063363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEYJUE0LKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9622, - 49.063363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEYJUE0LKV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41643188, - 48.85224905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41643188, - 48.85224905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35517581, - 48.98067116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVIZJCCHFM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35517581, - 48.98067116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVIZJCCHFM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08478188, - 49.23616118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DN2MMDN9FZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35249, - 49.3989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPANMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47162, - 49.4336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTQZUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53182, - 49.3415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZFESC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92319429, - 45.52570952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSKJMEF5WR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21293391, - 43.59465073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC1AKJFZH5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212832, - 43.59482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC1AKJFZH5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212832, - 43.59482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC1AKJFZH5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212832, - 43.59482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WC1AKJFZH5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259541, - 43.597814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPNWOVXD2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93247, - 43.5894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QENWKTMZCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93247, - 43.5894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QENWKTMZCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93247, - 43.5894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QENWKTMZCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93247, - 43.5894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QENWKTMZCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259541, - 43.597814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPNWOVXD2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92319429, - 45.52570952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSKJMEF5WR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53182, - 49.3415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RZFESC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899912, - 48.387296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQZHCENVFB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30014679, - 49.04953011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJBKFGAQ96", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09757818, - 48.33466413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LX3M7GUQLZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09757818, - 48.33466413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LX3M7GUQLZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12649837, - 48.92939691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVU3GGF8HX", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12649837, - 48.92939691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVU3GGF8HX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12649837, - 48.92939691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVU3GGF8HX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90753401, - 50.40535504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAC3YJH6PA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90753401, - 50.40535504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAC3YJH6PA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90503399, - 50.39211132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMNFG2WGSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90503399, - 50.39211132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZMNFG2WGSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49386651, - 45.17546501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDIHBPSJPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49386651, - 45.17546501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDIHBPSJPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07743485, - 45.15738978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HROA3L4NBG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07743485, - 45.15738978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HROA3L4NBG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899912, - 48.387296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQZHCENVFB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3183, - -20.9455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLWJHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.26599292, - -21.0141679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIPHPE34WD", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3183, - -20.9455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLWJHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.965007, - 49.065371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VU508T5OVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.965007, - 49.065371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VU508T5OVZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40102222, - 49.14844108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCQHR8X8AM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40102222, - 49.14844108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCQHR8X8AM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07420562, - 48.7357212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYRXKDVGXP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07420562, - 48.7357212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYRXKDVGXP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69625, - 49.205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQVDTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69625, - 49.205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQVDTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69625, - 49.205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQVDTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69625, - 49.205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQVDTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11827, - 45.7597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAYLQU8CEK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11827, - 45.7597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAYLQU8CEK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11827, - 45.7597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAYLQU8CEK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11827, - 45.7597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAYLQU8CEK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08703, - 45.7644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOOBA6QV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462643, - 44.917315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJAIJ1IBFG", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462643, - 44.917315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJAIJ1IBFG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462643, - 44.917315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJAIJ1IBFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81495946, - 46.47176608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAYRFJMR2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Tu-Sa 08:00-12:00,Tu-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.830157, - 48.897452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJUCCZEVLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 07:00-19:00", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.830157, - 48.897452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJUCCZEVLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 07:00-19:00", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027209, - 46.890697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANX5XTRANK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81495946, - 46.47176608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAYRFJMR2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Tu-Sa 08:00-12:00,Tu-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81495946, - 46.47176608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAYRFJMR2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Tu-Sa 08:00-12:00,Tu-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81495946, - 46.47176608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAYRFJMR2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Tu-Sa 08:00-12:00,Tu-Fr 14:00-18:00,Sa 14:00-17:00", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83507, - 47.9626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZKSFL", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027209, - 46.890697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANX5XTRANK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027209, - 46.890697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANX5XTRANK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027209, - 46.890697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANX5XTRANK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83507, - 47.9626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZKSFL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83507, - 47.9626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZKSFL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.83507, - 47.9626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZKSFL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30014679, - 49.04953011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJBKFGAQ96", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30014679, - 49.04953011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJBKFGAQ96", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30014679, - 49.04953011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJBKFGAQ96", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.086814459, - 48.31808191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08853228, - 48.31828217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08853228, - 48.31828217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5928524, - 50.352879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGSVS1AL8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5928524, - 50.352879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGSVS1AL8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44218628, - 44.92366478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKCYGTVQZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44218628, - 44.92366478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKCYGTVQZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44218628, - 44.92366478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKCYGTVQZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44218628, - 44.92366478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FKCYGTVQZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.240523, - 48.800273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EK29BLZG2U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.240523, - 48.800273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EK29BLZG2U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.086814459, - 48.31808191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.022384, - 47.764535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXZOFYGKVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.810482, - 47.745587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RIQRNFFR14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.016118, - 47.767776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENDRSP8NDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549566, - 47.850251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIYF14UR2QU1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.30014679, - 49.04953011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJBKFGAQ96", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96558337, - 48.63213926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJZI2PFA147ER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34955611, - 45.8983228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZSVN0XKFV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34955083, - 45.89835266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UZSVN0XKFV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11726363, - 46.95470032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXHDK2JIDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11726363, - 46.95470032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXHDK2JIDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30002918, - 49.0986626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSTO3YTK15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30002918, - 49.0986626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSTO3YTK15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.498815, - 48.537752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8ZUDPSMZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.498815, - 48.537752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8ZUDPSMZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.498815, - 48.537752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8ZUDPSMZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.498815, - 48.537752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8ZUDPSMZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.498815, - 48.537752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8ZUDPSMZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.498815, - 48.537752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C8ZUDPSMZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35406181, - 49.08576759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9KFZGHYY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35406181, - 49.08576759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9KFZGHYY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96558337, - 48.63213926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJZI2PFA147ER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965054, - 48.632276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJZIKVQJBF8T4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21714864, - 50.56614475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLDMBPSEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.403476, - 49.042103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXBMMXPZY1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.425641, - 49.050688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ9B01L2OYT4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.425641, - 49.050688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ9B01L2OYT4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.424899, - 49.050882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHQ8XLQM1082U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.123598575, - 48.62476348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGWTYIK1QR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.123598575, - 48.62476348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IGWTYIK1QR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39804093, - 49.04398311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JO7VVPBFQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21714864, - 50.56614475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLDMBPSEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39804093, - 49.04398311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JO7VVPBFQW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.403476, - 49.042103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXBMMXPZY1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.400968, - 49.044588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V43HVYP7PY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.400968, - 49.044588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V43HVYP7PY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21714864, - 50.56614475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLDMBPSEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21714864, - 50.56614475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLDMBPSEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08703, - 45.7644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOOBA6QV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08703, - 45.7644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOOBA6QV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08703, - 45.7644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOOBA6QV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32367, - 49.3738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissonsarc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62232, - 49.695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58b6d63f2370f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8985553, - 49.5669167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLWMERYTIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8985553, - 49.5669167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLWMERYTIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31649, - 49.3864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissonsdama", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32106, - 49.3804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb617ad8c4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31649, - 49.3864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissonsdama", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07527, - 49.9272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58b6d74ccc142", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07527, - 49.9272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58b6d74ccc142", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66592468, - 49.52242536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVRRH8KDBX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66592468, - 49.52242536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVRRH8KDBX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3436, - 49.8087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYKQRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32106, - 49.3804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb617ad8c4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11368547, - 49.4032033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRHDSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08724, - 49.2601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DBLHFU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11368547, - 49.4032033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRHDSL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4508, - 49.5049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58b6c69e0d34e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.78648, - 50.0168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWBNFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62412, - 49.5705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWZDPZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48756, - 49.8394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBWFSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45105, - 49.4979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWGEWH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.634, - 49.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SNUFDD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45105, - 49.4979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWGEWH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32853, - 49.3747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissonsunis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32853, - 49.3747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissonsunis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62232, - 49.695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58b6d63f2370f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3223, - 49.3859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb7222db0f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62412, - 49.5705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TWZDPZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.634, - 49.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SNUFDD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40779, - 49.0367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQMEHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4508, - 49.5049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58b6c69e0d34e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52155, - 49.0611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mezymoumedic", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28589, - 48.977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Charlymorl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.52155, - 49.0611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mezymoumedic", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32367, - 49.3738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "soissonsarc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3259, - 49.3802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNJDMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3223, - 49.3859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb7222db0f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3259, - 49.3802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNJDMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32161, - 49.3776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "5899a3d83d245", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32161, - 49.3776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "5899a3d83d245", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08169, - 49.2414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NZNXLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14828, - 49.3892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MVQUQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32714, - 49.383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZJMRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14828, - 49.3892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MVQUQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08842, - 49.2538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CEKNKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08842, - 49.2538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CEKNKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36727, - 48.9898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "589d8a780a12e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29575, - 49.8397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTRQMO3IQ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29575, - 49.8397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTRQMO3IQ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90333, - 49.8328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYRAGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08333333, - 49.91444444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TREUU2CJ9Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90333, - 49.8328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYRAGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35249, - 49.3989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPANMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.451062, - 49.989362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ2MJF702J9PW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31577, - 49.3761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMVVUZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.451062, - 49.989362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ2MJF702J9PW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36727, - 48.9898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "589d8a780a12e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12357, - 49.1797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFENPV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08724, - 49.2601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DBLHFU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12357, - 49.1797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EFENPV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07166, - 49.9083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58dcdcbf82a84", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30931, - 49.3737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58de499d6602c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31577, - 49.3761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMVVUZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07166, - 49.9083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58dcdcbf82a84", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32714, - 49.383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZJMRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30931, - 49.3737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58de499d6602c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30645, - 49.3746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58de4ae5aaabb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62777, - 49.9044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWNXPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30645, - 49.3746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58de4ae5aaabb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31632, - 49.3645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58de4a4bdf840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31632, - 49.3645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58de4a4bdf840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48756, - 49.8394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBWFSH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28611, - 49.8481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGGRYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08703, - 45.7644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOOBA6QV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39063, - 43.3298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laverderie", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39063, - 43.3298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "laverderie", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14008141, - 45.75966262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMW0TWM1G9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14008141, - 45.75966262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMW0TWM1G9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353198, - 49.005547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IJOXVXWV0B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71672171, - 48.61277374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU6UKE1DGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56197322, - 44.77498471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GFGWISRUKV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.96942499, - 45.73287192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJXC0KVN9L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.96942499, - 45.73287192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJXC0KVN9L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12051, - 49.4342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLXZFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08703, - 45.7644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOOBA6QV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58976, - 46.3306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMRU6GQRN3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58976, - 46.3306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TMRU6GQRN3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305503, - 49.869838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPHZOEZONW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28589, - 48.977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Charlymorl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96797, - 49.4363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXETMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22555, - 49.7561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb3ece5680", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.374131, - 49.029846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMGEBPEBGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40779, - 49.0367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQMEHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26455, - 48.9946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PASSBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28606, - 49.8481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGGRYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.374131, - 49.029846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMGEBPEBGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.78648, - 50.0168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWBNFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40779, - 49.0367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQMEHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26455, - 48.9946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PASSBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11831, - 49.4071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKRRKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7025, - 49.8237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHTBXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28329, - 49.8457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYSVEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15, - 49.8775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb47a92e48", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28329, - 49.8457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYSVEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28329, - 49.8457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QYSVEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3436, - 49.8087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYKQRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28606, - 49.8481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGGRYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.686231, - 44.82537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFR9ZCDQ6F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50235, - 44.870304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MU4VEED0OF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.686231, - 44.82537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFR9ZCDQ6F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.686231, - 44.82537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFR9ZCDQ6F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.686231, - 44.82537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFR9ZCDQ6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11831, - 49.4071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKRRKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.686231, - 44.82537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFR9ZCDQ6F", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.686231, - 44.82537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFR9ZCDQ6F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7025, - 49.8237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHTBXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96797, - 49.4363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXETMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15, - 49.8775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aeb47a92e48", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28611, - 49.8481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZGGRYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13100246, - 50.59615599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q4JVAXJQH0", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13100246, - 50.59615599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q4JVAXJQH0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13100246, - 50.59615599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q4JVAXJQH0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98143719, - 43.18566882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6MEVWHEHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61797799, - 43.1977226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOTABIQBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61797799, - 43.1977226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOTABIQBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61797799, - 43.1977226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOTABIQBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61797799, - 43.1977226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOTABIQBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61797799, - 43.1977226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOTABIQBH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61797799, - 43.1977226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOTABIQBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98143719, - 43.18566882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6MEVWHEHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98143719, - 43.18566882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6MEVWHEHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37266397, - 46.68271168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G5WSCVUOGV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37266397, - 46.68271168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G5WSCVUOGV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37266397, - 46.68271168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G5WSCVUOGV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37266397, - 46.68271168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G5WSCVUOGV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75787184, - 44.56716292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS6DHJXSDF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75787184, - 44.56716292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS6DHJXSDF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75787184, - 44.56716292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS6DHJXSDF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75787184, - 44.56716292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QS6DHJXSDF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98143719, - 43.18566882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q6MEVWHEHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58914992, - 47.26239792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R3XWXLIQVP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.25487433, - 48.76418785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKYUTHP1BE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.25487433, - 48.76418785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKYUTHP1BE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.295977, - 48.242535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQ31SB4676", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXZCNHKIHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57200064, - 47.19327037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXZCNHKIHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60899529, - 49.31810321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHJBR6MTSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60899529, - 49.31810321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHJBR6MTSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSCJHWOOBD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.295977, - 48.242535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQ31SB4676", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSCJHWOOBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60899529, - 49.31810321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHJBR6MTSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60899529, - 49.31810321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHJBR6MTSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHJBR6MTSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6089631, - 49.31839082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSCJHWOOBD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSCJHWOOBD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXZCNHKIHR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6089631, - 49.31839082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSCJHWOOBD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXDYFHVRAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXDYFHVRAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSCJHWOOBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60894067, - 49.3181843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXZCNHKIHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60899529, - 49.31810321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHJBR6MTSL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.45815291, - 48.75110645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACCWKSNKDG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.45815291, - 48.75110645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACCWKSNKDG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84350716, - 49.59440566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3EMG8J6LZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.84350716, - 49.59440566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3EMG8J6LZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91933021, - 49.14865044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J3N1KOHIJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22570281, - 46.6225991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCMGGZK8UV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.45815291, - 48.75110645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACCWKSNKDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.45815291, - 48.75110645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACCWKSNKDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11732583, - 44.61428527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXEUSC0NOG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40589264, - 46.67115995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQEM9PNU02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40589264, - 46.67115995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQEM9PNU02", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40589264, - 46.67115995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQEM9PNU02", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40589264, - 46.67115995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQEM9PNU02", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11732583, - 44.61428527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXEUSC0NOG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40589264, - 46.67115995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQEM9PNU02", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40589264, - 46.67115995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XQEM9PNU02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11732583, - 44.61428527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXEUSC0NOG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11732583, - 44.61428527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXEUSC0NOG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11732583, - 44.61428527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXEUSC0NOG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11732583, - 44.61428527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UXEUSC0NOG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22570281, - 46.6225991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCMGGZK8UV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84835656, - 46.7498445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLF8YQGSF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84835656, - 46.7498445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLF8YQGSF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84835656, - 46.7498445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLF8YQGSF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84835656, - 46.7498445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKLF8YQGSF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13346962, - 46.45991517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C91UWKY1QR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13346962, - 46.45991517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C91UWKY1QR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13346962, - 46.45991517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C91UWKY1QR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13346962, - 46.45991517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C91UWKY1QR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18306671, - 49.23610163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EM1XTBUMGN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11008614, - 50.71344104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZKATEV5AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84975347, - 46.74662089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKOSSK9SU8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84975347, - 46.74662089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CKOSSK9SU8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34673378, - 48.98199846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FYPYBGCKG4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462073, - 48.281484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F8CISMNBL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:30,Sa 08:00-19:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88181591, - 44.90926121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCDY4DXWFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60774973, - 48.95311449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZEWFPVSRKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43113034, - 47.68657067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRLDYDOYI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43113034, - 47.68657067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRLDYDOYI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43113034, - 47.68657067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRLDYDOYI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43113034, - 47.68657067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRLDYDOYI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45423361, - 48.64595371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3LWFBBFVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88181591, - 44.90926121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCDY4DXWFE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88181591, - 44.90926121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCDY4DXWFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88181591, - 44.90926121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YCDY4DXWFE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07980652, - 43.22059845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZWEVDDHH9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6332048, - 43.40185939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCVNUCGJWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30083712, - 47.83697635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JCWW7L4P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36738503, - 47.12095734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBBOWNBKO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72131004, - 46.05259811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIXKMOIV8M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72131004, - 46.05259811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIXKMOIV8M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72131004, - 46.05259811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIXKMOIV8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72131004, - 46.05259811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KIXKMOIV8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6332048, - 43.40185939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCVNUCGJWB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6332048, - 43.40185939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCVNUCGJWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30083712, - 47.83697635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JCWW7L4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30083712, - 47.83697635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JCWW7L4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30083712, - 47.83697635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JCWW7L4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30083712, - 47.83697635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JCWW7L4P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57662868, - 47.19260692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SSPQRIGGGG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.38832658, - 45.75150525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G07NKV2IV3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.38832658, - 45.75150525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G07NKV2IV3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.38698647, - 45.75260553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZ5BGZA7KF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.38698647, - 45.75260553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XZ5BGZA7KF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6332048, - 43.40185939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCVNUCGJWB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.63342444, - 43.40173857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHFKUTTBHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.63342444, - 43.40173857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHFKUTTBHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09547022, - 48.93084288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OH8L29VRNN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09547022, - 48.93084288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OH8L29VRNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09547022, - 48.93084288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OH8L29VRNN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09547022, - 48.93084288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OH8L29VRNN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.09547022, - 48.93084288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OH8L29VRNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18479771, - 46.03362873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGJEL6OX17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35140609, - 46.19570678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQV2RNZM6H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18150558, - 43.51775442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R84F9WYP2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18150558, - 43.51775442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R84F9WYP2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18150558, - 43.51775442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R84F9WYP2R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18150558, - 43.51775442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R84F9WYP2R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35140609, - 46.19570678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQV2RNZM6H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35140609, - 46.19570678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQV2RNZM6H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35140609, - 46.19570678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQV2RNZM6H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22350978, - 44.87554985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOUICAHQGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48017663, - 43.86358416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBMCIPOQG1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48017663, - 43.86358416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBMCIPOQG1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26082407, - 49.00313849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOJBWKSCLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26082407, - 49.00313849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOJBWKSCLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26082407, - 49.00313849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOJBWKSCLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26082407, - 49.00313849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOJBWKSCLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13100246, - 50.59615599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q4JVAXJQH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34189919, - 47.78954572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHLNTHDLYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85478746, - 46.99932607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y4W4XRLU0W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84283778, - 47.04146327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1K60S6LOO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84283778, - 47.04146327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1K60S6LOO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84283778, - 47.04146327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1K60S6LOO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84283778, - 47.04146327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1K60S6LOO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5111863, - 46.28925255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN1NPSWHO2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5111863, - 46.28925255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN1NPSWHO2", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5111863, - 46.28925255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN1NPSWHO2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5111863, - 46.28925255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN1NPSWHO2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5111863, - 46.28925255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN1NPSWHO2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5111863, - 46.28925255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN1NPSWHO2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17062351, - 44.41122908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROTRW5ZTBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17062351, - 44.41122908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ROTRW5ZTBM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26726896, - 45.59468697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZWROIDFBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04123101, - 44.05156649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MX6Q1OAWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94525698, - 50.49892321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUDXQHMAZH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04123101, - 44.05156649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MX6Q1OAWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04123101, - 44.05156649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MX6Q1OAWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04123101, - 44.05156649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MX6Q1OAWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.55986421, - 48.28278413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCOPA7FR3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.96615552, - 43.56790376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HVZILC8RVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.55986421, - 48.28278413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCOPA7FR3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.55986421, - 48.28278413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCOPA7FR3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.55986421, - 48.28278413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCOPA7FR3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.55986421, - 48.28278413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCOPA7FR3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.55986421, - 48.28278413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WCCOPA7FR3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85478746, - 46.99932607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y4W4XRLU0W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84283778, - 47.04146327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1K60S6LOO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84283778, - 47.04146327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T1K60S6LOO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52300746, - 43.49607369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAIBZUMHHF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-20:00", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149592, - 47.642093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNAICL53Z", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149592, - 47.642093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNAICL53Z", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149592, - 47.642093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNAICL53Z", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149592, - 47.642093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUNAICL53Z", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37487, - 48.718814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3DXGKYHRM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37487, - 48.718814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3DXGKYHRM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37487, - 48.718814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3DXGKYHRM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52300746, - 43.49607369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAIBZUMHHF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-20:00", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52300746, - 43.49607369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAIBZUMHHF", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-20:00", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52300746, - 43.49607369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAIBZUMHHF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-20:00", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13100246, - 50.59615599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q4JVAXJQH0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.790802, - 45.208576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZET3IOQSGY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.790802, - 45.208576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZET3IOQSGY", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.790802, - 45.208576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZET3IOQSGY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.790802, - 45.208576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZET3IOQSGY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.790802, - 45.208576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZET3IOQSGY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.52300746, - 43.49607369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MAIBZUMHHF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-20:00", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636987, - 43.192046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPEBXB9YXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.409148, - 46.318161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYUVJINTQC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85478746, - 46.99932607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y4W4XRLU0W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80215, - 50.21212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TGEZRIQCB9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.01307564, - 48.75260609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4QRFQWA0I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.01307564, - 48.75260609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4QRFQWA0I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.01307564, - 48.75260609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4QRFQWA0I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.01307564, - 48.75260609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V4QRFQWA0I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90327691, - 49.37008542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NYMVETIFEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90327691, - 49.37008542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NYMVETIFEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90327691, - 49.37008542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NYMVETIFEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90327691, - 49.37008542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NYMVETIFEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04457019, - 49.45808488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD8OWVSZIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04457019, - 49.45808488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD8OWVSZIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04457019, - 49.45808488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD8OWVSZIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04457019, - 49.45808488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD8OWVSZIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04457019, - 49.45808488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD8OWVSZIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04457019, - 49.45808488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FD8OWVSZIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85478746, - 46.99932607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y4W4XRLU0W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4957, - 48.4681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "eleclerober", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57620346, - 50.34574686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUS5RTX2UW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86952585, - 50.10547019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUSQCHVOAB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86952585, - 50.10547019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUSQCHVOAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86952585, - 50.10547019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUSQCHVOAB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86952585, - 50.10547019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUSQCHVOAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86952585, - 50.10547019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUSQCHVOAB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4957, - 48.4681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "eleclerober", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13611955, - 49.10756782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRGXDRTTO6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8766102, - 46.17930297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QH4GD1TUH4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39760523, - 50.03117065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39760523, - 50.03117065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39760523, - 50.03117065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39760523, - 50.03117065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34782085, - 48.73735181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMWSI0JG0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34782085, - 48.73735181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMWSI0JG0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34782085, - 48.73735181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMWSI0JG0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34782085, - 48.73735181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMWSI0JG0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34782085, - 48.73735181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMWSI0JG0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34782085, - 48.73735181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMWSI0JG0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29828589, - 45.38837751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGLWGT1XND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87636127, - 46.17864182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKOVST34HX", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87636127, - 46.17864182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKOVST34HX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00373123, - 46.95758926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDGGB1NVRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8766102, - 46.17930297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QH4GD1TUH4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87636127, - 46.17864182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKOVST34HX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87636127, - 46.17864182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKOVST34HX", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87636127, - 46.17864182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKOVST34HX", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87636127, - 46.17864182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKOVST34HX", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17097903, - 49.21509989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBFG8OBIJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85662027, - 46.8121653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RWQKAKGXL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56079179, - 46.82398213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHVJ8STYWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08138708, - 49.60159176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGJJYJCBOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08138708, - 49.60159176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGJJYJCBOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08138708, - 49.60159176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGJJYJCBOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08138708, - 49.60159176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGJJYJCBOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08138708, - 49.60159176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGJJYJCBOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96230471, - 49.06489579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FT7Q4WNI3A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96230471, - 49.06489579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FT7Q4WNI3A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96230471, - 49.06489579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FT7Q4WNI3A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96230471, - 49.06489579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FT7Q4WNI3A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08396356, - 50.38126533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYYFI6NIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08396356, - 50.38126533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYYFI6NIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08396356, - 50.38126533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYYFI6NIAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08396356, - 50.38126533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KYYFI6NIAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.34581395, - 48.09107669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQWX3AC3GR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08138708, - 49.60159176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGJJYJCBOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68720882, - 47.83017861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QMM82OX1GG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69562343, - 49.18870157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LHO03SXIPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35404564, - 46.56548395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWRHODBYDL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35404564, - 46.56548395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWRHODBYDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.89656484, - 50.05887052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZA8JA9BSVY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34369826, - 48.70459912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KU6VNMWPRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.021222, - 46.881075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIIRDBT67N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.021222, - 46.881075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIIRDBT67N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.021222, - 46.881075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIIRDBT67N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.743227, - 43.459331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POTRT2UKUG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.743227, - 43.459331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POTRT2UKUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5413194, - 16.25249499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGK8U5EEDE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5413194, - 16.25249499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGK8U5EEDE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.2751846, - 16.25790761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA9HIA7WJP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.2751846, - 16.25790761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA9HIA7WJP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.2751846, - 16.25790761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA9HIA7WJP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.021222, - 46.881075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NIIRDBT67N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81137, - 49.1498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUUVYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57887062, - 43.35958975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CN71UXKBKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81137, - 49.1498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUUVYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580701, - 47.44912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIO765R6CG78K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35128, - 46.9011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarroc", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31933, - 47.0162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKYNQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76868, - 47.3894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQHELL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61761, - 48.5401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWFFPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:00-15:00,We 08:00-23:00,Fr 08:00-23:00,Th 08:00-10:00,Th 13:00-20:00", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.33398, - 47.7486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNAAVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.27853, - 47.7594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CTUDSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36838, - 47.7493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JREWFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36838, - 47.7493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JREWFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.27853, - 47.7594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CTUDSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3336, - 47.7442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QPFAVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34306, - 47.7484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYCHBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34306, - 47.7484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYCHBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3336, - 47.7442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QPFAVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.33398, - 47.7486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNAAVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.2751846, - 16.25790761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA9HIA7WJP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.5892723, - 16.25229414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2ZYVDEZCI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26194, - 43.699975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IASECPLLXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26354, - 43.715637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOUCGH4D2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926031, - 49.938496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEHMD1BJY0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926031, - 49.938496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MEHMD1BJY0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.850912, - 47.910303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THW2NLV0GF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.850912, - 47.910303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THW2NLV0GF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412251, - 43.477805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGGXMZDHIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412251, - 43.477805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGGXMZDHIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84408174, - 47.00910414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TD9JKXMCX6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9460659, - 47.21332426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XIGDYUXUYP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9460659, - 47.21332426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XIGDYUXUYP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.059057, - 47.351112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTBAPZKKLS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.059057, - 47.351112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTBAPZKKLS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77367206, - 50.41933336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PSHJETZDTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57887062, - 43.35958975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CN71UXKBKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26354, - 43.701569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S5MAYKG1DE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26354, - 43.715637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAOUCGH4D2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26194, - 43.699975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IASECPLLXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70944237, - 45.19387613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRPCRSDJXN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.9737496, - 14.55460115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ6XHLSS2QBEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.9737496, - 14.55460115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ6XHLSS2QBEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.728289, - 46.098816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEWBFH2LZO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.728289, - 46.098816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEWBFH2LZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.728289, - 46.098816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KEWBFH2LZO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70944237, - 45.19387613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRPCRSDJXN", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70944237, - 45.19387613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRPCRSDJXN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26174, - 43.699974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHUT1OA2QQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26141, - 43.7024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EBBPTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26142, - 43.7024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EBBPTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26354, - 43.701569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S5MAYKG1DE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.26174, - 43.699974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WHUT1OA2QQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.261654, - 43.702444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6QFCRFVXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.261654, - 43.702444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6QFCRFVXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76868, - 47.3894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQHELL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34236, - 46.9226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "doubshyper", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06973, - 47.0391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AEDHEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.893086, - 47.47642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRIXQATI3S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8824, - 47.1039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRTQBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38398, - 46.9452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHXZGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38398, - 46.9452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHXZGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813725, - 47.318939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIOK3JAN1K99S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813725, - 47.318939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIOK3JAN1K99S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35128, - 46.9011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarroc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30319, - 46.8135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UULUVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96517, - 47.2132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFPUWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.272181, - 47.147744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQUH2Z082H", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96517, - 47.2132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFPUWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.272181, - 47.147744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQUH2Z082H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.377671, - 47.392855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDMZFUQMXL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8824, - 47.1039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRTQBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.272181, - 47.147744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQUH2Z082H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580701, - 47.44912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIO765R6CG78K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.377671, - 47.392855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDMZFUQMXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.377671, - 47.392855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDMZFUQMXL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813725, - 47.318939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIOK3JAN1K99S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580701, - 47.44912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIO765R6CG78K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35128, - 46.9011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarroc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35128, - 46.9011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarroc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30319, - 46.8135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UULUVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81312, - 47.448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mandeuresuper", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60546, - 47.0585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Morteaugare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81312, - 47.448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mandeuresuper", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60546, - 47.0585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Morteaugare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.377671, - 47.392855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDMZFUQMXL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.48002, - 47.0473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gilleycret", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34571, - 46.9019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarcine", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14584, - 47.1068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVCNFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14584, - 47.1068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VVCNFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.48002, - 47.0473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gilleycret", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14793, - 47.1071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NNYTYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.67085, - 47.0591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "villerbartho", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.893086, - 47.47642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRIXQATI3S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.28735, - 47.0477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGGHFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.67085, - 47.0591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "villerbartho", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15813, - 46.8575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Frasnegare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.33487, - 46.8551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "oyepalletsdf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.33487, - 46.8551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "oyepalletsdf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15813, - 46.8575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Frasnegare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53992, - 47.2143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pierrefonmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78209, - 47.0399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "arcetsenans", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78209, - 47.0399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "arcetsenans", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35128, - 46.9011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarroc", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-10-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06973, - 47.0391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AEDHEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3396, - 47.0948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UBXXUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31933, - 47.0162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKYNQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.28735, - 47.0477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RGGHFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65814, - 47.2621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZWNLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3396, - 47.0948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UBXXUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65814, - 47.2621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YZWNLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84116, - 47.4815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "audincourpos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84116, - 47.4815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "audincourpos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84116, - 47.4815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "audincourpos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60476, - 47.054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "morteaucoll", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58382, - 47.2943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJNMSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1953, - 46.7144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLQMYY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1953, - 46.7144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLQMYY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46326, - 46.9924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRUYZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46326, - 46.9924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRUYZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60476, - 47.054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "morteaucoll", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.774542, - 47.23433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTZIYHR634", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84116, - 47.4815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "audincourpos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.774542, - 47.23433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTZIYHR634", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.377671, - 47.392855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDMZFUQMXL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58382, - 47.2943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YJNMSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39595, - 47.1819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vercelville", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39595, - 47.1819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vercelville", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.53992, - 47.2143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pierrefonmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57887062, - 43.35958975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CN71UXKBKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57887062, - 43.35958975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CN71UXKBKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.89656484, - 50.05887052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZA8JA9BSVY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.733544, - 43.4498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXNFKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.08563, - 43.657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTWFUM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.733544, - 43.4498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JXNFKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.460499, - 43.7579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVTXUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.873202, - 43.63 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXJWUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.873202, - 43.63 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HXJWUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625206, - 43.9343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFTTPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625206, - 43.9343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BFTTPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.460499, - 43.7579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVTXUX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.103122, - 43.8593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDKXJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.103122, - 43.8593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CDKXJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.372822, - 43.9558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DMVKVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666379, - 43.8505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YECSZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66865, - 44.0031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UCAAKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.666379, - 43.8505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YECSZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07928, - 43.6137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHRYDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54465243, - 43.34520961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JT0PXWXNVC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237184, - 43.8843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTSRMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.03418893, - 48.11934037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOAWXOY1RL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.083122, - 43.6975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGFWHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72062678, - 47.44773522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FC0CGPMFFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72062678, - 47.44773522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FC0CGPMFFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72062678, - 47.44773522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FC0CGPMFFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.144442241, - 45.52735706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQ4EGZPKGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.144442241, - 45.52735706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQ4EGZPKGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54465243, - 43.34520961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JT0PXWXNVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646619, - 43.344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPBWJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.08563, - 43.657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DTWFUM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.646619, - 43.344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPBWJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58347, - 43.6476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCCRUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58347, - 43.6476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GCCRUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87569078, - 43.77025322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJHOAYDA3O", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87569078, - 43.77025322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJHOAYDA3O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237184, - 43.8843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XTSRMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.083122, - 43.6975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BGFWHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.406859, - 43.5144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKWHDP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.406859, - 43.5144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GKWHDP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.757224, - 43.9983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRTKJD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.981634, - 43.5983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDDWBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.585688, - 43.6363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRFJWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.585688, - 43.6363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRFJWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16162, - 43.5243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PQSUGK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0435403, - 43.9499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVQXQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.592221, - 43.4917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYUUWX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.592221, - 43.4917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYUUWX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.372822, - 43.9558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DMVKVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97845, - 43.7229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BABXXR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97845, - 43.7229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BABXXR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.590491, - 43.6488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKUESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.301174, - 43.757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAXDEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.301174, - 43.757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SAXDEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.381984, - 43.8829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPAZYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.381984, - 43.8829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPAZYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0435403, - 43.9499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVQXQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.590491, - 43.6488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKUESQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.592952, - 43.652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFWKYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929674, - 43.4906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANWJWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.306926, - 43.4287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPMRAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.328356, - 43.5783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPCXMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.328356, - 43.5783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NPCXMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87814433, - 43.73183265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFSCCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87814433, - 43.73183265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KFSCCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07928, - 43.6137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHRYDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.757224, - 43.9983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZRTKJD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.306926, - 43.4287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPMRAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.592952, - 43.652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFWKYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.915598, - 43.4745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAMSWR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.915598, - 43.4745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RAMSWR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929674, - 43.4906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ANWJWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16162, - 43.5243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PQSUGK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2364, - 43.7032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMUVUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2364, - 43.7032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMUVUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72062678, - 47.44773522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FC0CGPMFFS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130678, - 49.048734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JO5BRM2AZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-17:00", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130678, - 49.048734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JO5BRM2AZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-17:00", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45052567, - 48.95732671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.173208, - 48.262531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZO7EL7PRD6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.596117, - 46.344752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PU8TVQEFNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44448, - 46.6534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RP1ODR0UNU", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1287134, - 48.3137515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFPYCFK3HI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1287134, - 48.3137515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFPYCFK3HI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47535476, - 46.37295353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETLUKKUNU7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47535476, - 46.37295353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETLUKKUNU7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879608, - 43.121525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDUTLZQEJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879608, - 43.121525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDUTLZQEJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25024844, - 43.55967202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYOLENOBWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03143944, - 43.76706704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UVBI4ZPDJG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93816102, - 44.92160355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU98V8U1LGVB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93816102, - 44.92160355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIU98V8U1LGVB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47166975, - 47.509418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRNTWNCMBI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47166975, - 47.509418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRNTWNCMBI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.173208, - 48.262531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZO7EL7PRD6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.97435221, - 48.60121199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A3NZTZQNQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.584887, - 44.163136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMEFMD4DXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64799158, - 48.90295368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4EPKQ72IF9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.33156329, - 46.90606168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VUY2EBKCXJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.795416392, - 43.9707591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MWG2J2DVGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-08:00,Mo-Fr 18:30-23:45,Sa-Su 00:00-23:45", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29830466, - 49.6976649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUXBWQWQXS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29830466, - 49.6976649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EUXBWQWQXS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65493811, - 48.70277172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXUJA6EA0H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64799158, - 48.90295368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4EPKQ72IF9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.026832, - 43.136314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVRK3JQHGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.584887, - 44.163136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMEFMD4DXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.026832, - 43.136314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVRK3JQHGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.026832, - 43.136314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVRK3JQHGA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.026832, - 43.136314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVRK3JQHGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53880496, - 49.26570602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNRBDCEV7P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53880496, - 49.26570602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNRBDCEV7P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53880496, - 49.26570602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNRBDCEV7P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45052567, - 48.95732671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45052567, - 48.95732671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8535064, - 47.95248388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMULMNANEO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45052567, - 48.95732671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32457891, - 49.47435194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBTJI4QVE3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-18:00,Sa 07:00-12:30", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32457891, - 49.47435194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBTJI4QVE3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-18:00,Sa 07:00-12:30", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35606084, - 48.60678758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMBBYPLTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 05:00-06:00,Fr 05:00-06:00,Mo-Fr 21:00-22:00,Th 06:00-07:00", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35606084, - 48.60678758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQMBBYPLTF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 05:00-06:00,Fr 05:00-06:00,Mo-Fr 21:00-22:00,Th 06:00-07:00", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47526696, - 48.75911403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6DFD4JXKG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47526696, - 48.75911403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T6DFD4JXKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8535064, - 47.95248388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMULMNANEO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35128, - 46.9011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarroc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14793, - 47.1071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NNYTYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34236, - 46.9226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "doubshyper", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07243, - 49.7479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hamham", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91150034, - 49.75711771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d245bb6a2bf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46179, - 50.0637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSEFWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34641, - 49.8592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "cagnybarbusse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29526, - 49.8878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJAZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90118, - 49.8468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hornoydufour", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28636, - 49.8942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXBPRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28636, - 49.8942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXBPRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07243, - 49.7479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hamham", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90118, - 49.8468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hornoydufour", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36253, - 49.7565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UVJGEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36253, - 49.7565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UVJGEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46179, - 50.0637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSEFWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28636, - 49.8942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXBPRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28636, - 49.8942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXBPRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08123, - 50.0148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d2452cb39d7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94277, - 49.9656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "airaines53e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11913, - 50.0381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMHGVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34571, - 46.9019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pontarcine", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91150034, - 49.75711771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d245bb6a2bf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0659, - 50.0286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUHCFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0659, - 50.0286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUHCFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6702662, - 49.84988351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "harbonnieres", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56315, - 50.3394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ftmahontouris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95655, - 49.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHCEYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95655, - 49.8963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BHCEYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56315, - 50.3394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ftmahontouris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0206, - 49.8835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "molliensdreuil", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09822, - 49.9466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFJTTX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29526, - 49.8878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJAZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75484, - 50.314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPQRSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6702662, - 49.84988351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "harbonnieres", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0206, - 49.8835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "molliensdreuil", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29526, - 49.8878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJAZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75484, - 50.314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPQRSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11913, - 50.0381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMHGVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66911, - 50.2723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ruebeffroi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09822, - 49.9466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFJTTX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61484, - 50.2231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lecrotoyvadic", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10757, - 46.256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZMXAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10757, - 46.256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58cab98e76bd3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10757, - 46.256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZZMXAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.53424, - 47.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPBHMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.53424, - 47.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPBHMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.86681986, - 43.5796737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P9ZRAMGL0G", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3375268, - 43.8147048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SG4BBYR1FY", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3375268, - 43.8147048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SG4BBYR1FY", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0312769, - 43.1758711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUMXEJQLLD", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3375268, - 43.8147048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SG4BBYR1FY", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3375268, - 43.8147048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SG4BBYR1FY", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25736117, - 43.3444747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXIBYMRXBH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25736117, - 43.3444747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZXIBYMRXBH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.120019, - 44.11633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UMSFRRANOQ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.120019, - 44.11633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UMSFRRANOQ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10757, - 46.256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58cab98e76bd3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11770382, - 46.26114326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OCRUUMPHSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11770382, - 46.26114326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OCRUUMPHSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.074223, - 49.217853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4GOUTGVDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63007, - 50.1874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stvalerysomme", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66911, - 50.2723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ruebeffroi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94277, - 49.9656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "airaines53e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.019612, - 49.485848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ALEJNTJITP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.856747, - 46.17183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEKHJI0HSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.856747, - 46.17183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QEKHJI0HSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.074223, - 49.217853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D4GOUTGVDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.531192, - 49.150015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KB1PIN41BH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604848, - 49.054628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKISQUTAT2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61464, - 49.0454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGZJSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61464, - 49.0454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGZJSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604848, - 49.054628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IKISQUTAT2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.45532, - 48.97678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1TG2DDEOE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.45532, - 48.97678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D1TG2DDEOE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42697, - 49.8128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVJDXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94363, - 49.7018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPGGBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62812, - 50.2155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aec90fe0c22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49746, - 50.1807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c56db5ce3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.609513, - 49.908878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGVTTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20023, - 49.9279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJEMLB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20023, - 49.9279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MJEMLB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.609513, - 49.908878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGVTTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65235, - 49.9795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWTTNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.68852, - 50.0526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUCKJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.68852, - 50.0526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUCKJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.647152, - 49.745562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPGAPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6175, - 49.6602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBRBZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44307, - 49.9861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJGFUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44307, - 49.9861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DJGFUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6175, - 49.6602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TBRBZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.647152, - 49.745562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPGAPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59001, - 50.2692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRQKGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59001, - 50.2692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XRQKGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29792, - 49.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLEYBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34536, - 50.157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "doullenspisci", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78809782, - 49.69999386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTSJDPSCWJ", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31097, - 49.8912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUUUFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31302, - 49.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUDFPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30784, - 49.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGBZJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266507, - 49.897935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGPERV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31095, - 49.8911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUUUFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31095, - 49.8911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUUUFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29792, - 49.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DLEYBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.64344, - 50.1832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stvalperree", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29797, - 49.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXDFXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47289, - 50.0369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HLQJWN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5247, - 50.0124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEFWCP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.78809782, - 49.69999386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTSJDPSCWJ", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29797, - 49.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXDFXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266507, - 49.897935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGPERV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266507, - 49.897935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGPERV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65235, - 49.9795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWTTNG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48249, - 49.7722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "moreuilmalter", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62812, - 50.2155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aec90fe0c22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48249, - 49.7722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "moreuilmalter", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.176, - 49.7761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHMTEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.176, - 49.7761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHMTEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6274, - 49.9366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYMSLB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30791, - 49.8919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWXSQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30589, - 49.8895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGXHDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30589, - 49.8895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGXHDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30791, - 49.8919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWXSQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6274, - 49.9366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYMSLB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30787, - 49.8918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWXSQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30787, - 49.8918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AWXSQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42916, - 49.9383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KQJTGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34281, - 50.1542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "doullensgoret", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34281, - 50.1542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "doullensgoret", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42697, - 49.8128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PVJDXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94363, - 49.7018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPGGBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42916, - 49.9383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KQJTGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31097, - 49.9519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCLHFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67121, - 50.2714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "rueverdun", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56517, - 49.9533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZSRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49746, - 50.1807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58c7c56db5ce3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31279, - 49.9465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d24440e77bf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31279, - 49.9465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d24440e77bf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08123, - 50.0148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58d2452cb39d7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61484, - 50.2231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lecrotoyvadic", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.81664, - 49.8557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPZAXD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56517, - 49.9533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZSRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67121, - 50.2714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "rueverdun", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.81664, - 49.8557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GPZAXD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35330023, - 49.74584581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSJVFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35330023, - 49.74584581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSJVFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7295, - 50.0924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Miraumonmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83891, - 50.1103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYEBQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31097, - 49.9519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCLHFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0312769, - 43.1758711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PUMXEJQLLD", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.86681986, - 43.5796737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P9ZRAMGL0G", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93019521, - 44.92151277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAWGJI2HTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14939, - 47.6185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vesoul2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13954, - 47.63 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Vesoulhaberges", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49285865, - 47.68422427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PYZKRX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159957, - 47.62037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5HNSQ9L6I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16127, - 47.6224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Vesoulmeillier", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13954, - 47.63 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Vesoulhaberges", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07924, - 47.4261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPLBGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159957, - 47.62037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K5HNSQ9L6I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07924, - 47.4261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPLBGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68407, - 47.7044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Champagneyren", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14253, - 47.6406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vesoul1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76207, - 47.5763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Hericourtbro", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37407, - 47.8193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTQUNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27306, - 47.885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stloupmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37407, - 47.8193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WTQUNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14939, - 47.6185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vesoul2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15962, - 47.6208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VesoulGerlingen", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75739, - 47.5739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Hericourteurop", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15962, - 47.6208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VesoulGerlingen", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49285865, - 47.68422427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PYZKRX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42996, - 47.5491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "villersexel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25794, - 47.4665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNXAGJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27956, - 47.6956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "saulxgdspuits", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.58802, - 47.4488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Graymavia", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27956, - 47.6956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "saulxgdspuits", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.859, - 47.5493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnecarrefour", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16127, - 47.6224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Vesoulmeillier", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73722, - 47.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Planchermarcel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73722, - 47.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Planchermarcel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49847161, - 47.68532935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lureinter", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88738, - 47.7118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Combeau15juin", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15301, - 47.6215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vesoulfaure", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15301, - 47.6215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vesoulfaure", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49847161, - 47.68532935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "lureinter", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.51354, - 47.6169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWMJTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59214, - 47.4339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gray", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1288, - 47.6294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PATTYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59214, - 47.4339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gray", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.174664, - 47.62926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYOQWAPMBZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143673, - 47.64323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QI8FOZJERH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143673, - 47.64323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QI8FOZJERH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143673, - 47.64323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QI8FOZJERH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.78137498, - 47.59207727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DORRYWA2NF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.78137498, - 47.59207727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DORRYWA2NF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.78137498, - 47.59207727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DORRYWA2NF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.174664, - 47.62926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYOQWAPMBZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993921, - 47.917131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SL7L7X7UFK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.365601, - 47.774631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMIXYEGR9U", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993921, - 47.917131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SL7L7X7UFK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.588925, - 47.650833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQEQVHLYFO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993921, - 47.917131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SL7L7X7UFK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.588925, - 47.650833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQEQVHLYFO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.588925, - 47.650833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RQEQVHLYFO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.365601, - 47.774631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMIXYEGR9U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.174664, - 47.62926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EYOQWAPMBZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073609, - 47.423647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVHJEWG2DD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81502, - 47.4071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Gymairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14253, - 47.6406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vesoul1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76654, - 47.5766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hericourtbere", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76654, - 47.5766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hericourtbere", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68407, - 47.7044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Champagneyren", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38046, - 47.8128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Luxeuilmai", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.859, - 47.5493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnecarrefour", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.81502, - 47.4071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Gymairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073609, - 47.423647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVHJEWG2DD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38046, - 47.8128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Luxeuilmai", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.895957, - 47.709747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MK1AHL8ZA7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.895957, - 47.709747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MK1AHL8ZA7", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.365601, - 47.774631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CMIXYEGR9U", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073609, - 47.423647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVHJEWG2DD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.895957, - 47.709747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MK1AHL8ZA7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57684, - 47.753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "meliseygare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25794, - 47.4665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNXAGJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93019521, - 44.92151277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAWGJI2HTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11513399, - 45.77976191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TIVE2CNYCX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.059012, - 49.099824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYYLOA44OQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.059012, - 49.099824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYYLOA44OQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.059012, - 49.099824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYYLOA44OQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.059012, - 49.099824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYYLOA44OQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5944044, - 43.55145892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPWWYVYVMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5944044, - 43.55145892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPWWYVYVMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5944044, - 43.55145892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPWWYVYVMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5944044, - 43.55145892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TPWWYVYVMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71262906, - 43.59593996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F9HUXNS8SF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71262906, - 43.59593996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F9HUXNS8SF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00364, - 48.1824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFMCZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.00364, - 48.1824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFMCZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22667, - 49.092118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPV9T9CG13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20113639, - 46.07864515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KG7R2ZWEFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20113639, - 46.07864515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KG7R2ZWEFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18957371, - 48.63837151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6FBP3FUUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73848707, - 48.52228948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDNK46PZBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73848707, - 48.52228948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TDNK46PZBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65936, - 43.8566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Lomagnehopi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65936, - 43.8566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Lomagnehopi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18957371, - 48.63837151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6FBP3FUUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18957371, - 48.63837151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6FBP3FUUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18957371, - 48.63837151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6FBP3FUUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87593955, - 43.91875606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ESPSCBXVJ3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11513399, - 45.77976191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TIVE2CNYCX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51691828, - 45.84284844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPBREMU4YX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51136, - 47.6723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFLQSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56555, - 47.2795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pesmemarche", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18114, - 47.6209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FroteyLesVesl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18114, - 47.6209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FroteyLesVesl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.77339, - 47.2915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "marnaychauff", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.77339, - 47.2915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "marnaychauff", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.67749, - 47.5569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "dampiermairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.58802, - 47.4488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Graymavia", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57684, - 47.753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "meliseygare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56167, - 47.8413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Faucogneymer", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56167, - 47.8413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Faucogneymer", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10379, - 47.7652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Faverneydruais", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88738, - 47.7118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Combeau15juin", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10379, - 47.7652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Faverneydruais", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42996, - 47.5491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "villersexel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51136, - 47.6723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFLQSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13818, - 47.601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vaivretmonto", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09598, - 47.9226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRUSJX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63035209, - 47.69877138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "romchamp14uil", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.75739, - 47.5739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Hericourteurop", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13818, - 47.601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "vaivretmonto", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27306, - 47.885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stloupmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56555, - 47.2795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pesmemarche", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9035, - 47.8267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "jusseyfoire", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63035209, - 47.69877138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "romchamp14uil", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1288, - 47.6294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PATTYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2018-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.67749, - 47.5569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "dampiermairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.04208, - 47.6837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PortsurSaone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09598, - 47.9226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRUSJX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.04208, - 47.6837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PortsurSaone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59027, - 47.4546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKHFUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9035, - 47.8267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "jusseyfoire", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76207, - 47.5763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Hericourtbro", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.51354, - 47.6169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWMJTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59027, - 47.4546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKHFUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.600131, - 43.6679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QDBEGF", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49866, - 43.9812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLNVAYQDOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.770562, - 43.891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSVRYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378455, - 45.465818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKXKYJ22DI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.179008, - 45.6934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXBALB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.770523, - 46.513922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJISQ1M00E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.770523, - 46.513922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJISQ1M00E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.770523, - 46.513922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJISQ1M00E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.770523, - 46.513922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJISQ1M00E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4993222, - 43.30801307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2J6I5CRAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4993222, - 43.30801307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2J6I5CRAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.18397726, - 48.42329139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MS24BWDH9Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.18397726, - 48.42329139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MS24BWDH9Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.18397726, - 48.42329139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MS24BWDH9Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.18397726, - 48.42329139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MS24BWDH9Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9603301, - 45.70767024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSYLN7MJO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9603301, - 45.70767024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSYLN7MJO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9603301, - 45.70767024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSYLN7MJO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9603301, - 45.70767024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CSYLN7MJO0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.179008, - 45.6934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YXBALB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378455, - 45.465818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MKXKYJ22DI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.398596, - 45.442679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVDXH7QTI9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804629, - 48.874334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MZRBDKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804629, - 48.874334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MZRBDKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804629, - 48.874334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MZRBDKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3980443, - 48.75665765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FNL0YUZD9U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3980443, - 48.75665765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FNL0YUZD9U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78003218, - 43.93196066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBQ9A4IX7P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78003218, - 43.93196066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KBQ9A4IX7P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22049675, - 47.96471951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDEBFXD6F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22049675, - 47.96471951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDEBFXD6F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22049675, - 47.96471951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LDEBFXD6F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4726431, - 50.37769734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRXH55YOEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4726431, - 50.37769734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRXH55YOEF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4726431, - 50.37769734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRXH55YOEF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4726431, - 50.37769734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRXH55YOEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.398596, - 45.442679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JVDXH7QTI9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9079, - 48.9564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZN2DDHBYGZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9079, - 48.9564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZN2DDHBYGZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9079, - 48.9564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZN2DDHBYGZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17871845, - 49.11377766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQNSBIB36O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31707683, - 46.18655661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N7CMCZKXED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43373965, - 48.09236037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSHTHJSG61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65746865, - 45.24507897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X0KAYOBXRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80192, - 45.5369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K9AVBWZHUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17871845, - 49.11377766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQNSBIB36O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139213798, - 45.89527515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2YEK1N0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139213798, - 45.89527515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2YEK1N0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139213798, - 45.89527515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2YEK1N0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139213798, - 45.89527515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2YEK1N0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1392138, - 45.89527515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2YEK1N0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80192, - 45.5369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "K9AVBWZHUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.65746865, - 45.24507897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X0KAYOBXRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.712898, - 48.034409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I1BMCT7WYC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.712898, - 48.034409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I1BMCT7WYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.712898, - 48.034409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I1BMCT7WYC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.712898, - 48.034409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I1BMCT7WYC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73772034, - 46.28927651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYBDYJJ4TC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73772034, - 46.28927651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYBDYJJ4TC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804629, - 48.874334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MZRBDKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804629, - 48.874334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MZRBDKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.804629, - 48.874334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LA2MZRBDKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105858, - 49.105122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1JONUHSPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.120087, - 49.034662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAN1EK83QC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.120087, - 49.034662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAN1EK83QC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.120087, - 49.034662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAN1EK83QC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.120087, - 49.034662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAN1EK83QC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.120087, - 49.034662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAN1EK83QC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.120087, - 49.034662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAN1EK83QC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.63991607, - 45.72249332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJYWF7AUNG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.63991607, - 45.72249332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CJYWF7AUNG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.027515, - 48.326696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E95FKFHLMJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.027515, - 48.326696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E95FKFHLMJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.446859, - 48.738614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7QSS7UZXI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.446859, - 48.738614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7QSS7UZXI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.559006, - 48.958653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJGU41XRPM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.559006, - 48.958653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJGU41XRPM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105858, - 49.105122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1JONUHSPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62615129, - 50.68792454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNWWAFPBW9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:30-12:00,Mo-Fr 13:30-18:30,Tu-Fr 08:00-12:00,Sa 09:00-12:00,Sa 14:00-17:30", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62615129, - 50.68792454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNWWAFPBW9", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo 08:30-12:00,Mo-Fr 13:30-18:30,Tu-Fr 08:00-12:00,Sa 09:00-12:00,Sa 14:00-17:30", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9855801, - 45.63093544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQZ44DT842", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81263702, - 46.28645376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOEDIIY83S", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.268832, - 45.868085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9Q4QKTKIG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.268832, - 45.868085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I9Q4QKTKIG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28527514, - 49.14325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHETZJE3DT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28527514, - 49.14325703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHETZJE3DT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81263702, - 46.28645376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SOEDIIY83S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9855801, - 45.63093544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BQZ44DT842", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27224721, - 48.64780704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLAZLGVW42", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27224721, - 48.64780704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLAZLGVW42", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34729512, - 43.8199057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QURNW8BWEM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34729512, - 43.8199057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QURNW8BWEM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319827, - 46.608804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z0CNZYBUQL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319827, - 46.608804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z0CNZYBUQL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105858, - 49.105122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1JONUHSPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105858, - 49.105122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1JONUHSPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.639236, - 41.909315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BAHAHGV1PV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105858, - 49.105122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1JONUHSPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07022881, - 44.14649426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHXLM9QQUG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07022881, - 44.14649426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHXLM9QQUG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.89312701, - 49.01167572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F0NR8K9NFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.89312701, - 49.01167572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F0NR8K9NFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43852197, - 43.52868452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CLKIBX2TKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.362787, - 48.099197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FIXHIOIBDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.362787, - 48.099197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FIXHIOIBDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.64545, - 43.2659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHBBNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.64545, - 43.2659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHBBNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.64545, - 43.2659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHBBNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.64545, - 43.2659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DHBBNU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391097, - 49.203711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMDZXYQQKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391097, - 49.203711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMDZXYQQKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391097, - 49.203711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RMDZXYQQKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.639236, - 41.909315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BAHAHGV1PV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07022881, - 44.14649426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHXLM9QQUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07022881, - 44.14649426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHXLM9QQUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.305312, - 47.83651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7JGYCFWRS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37255875, - 45.41546181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LOG48IHQH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.105858, - 49.105122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S1JONUHSPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64404, - 46.03226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A6NNCC3AAE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64404, - 46.03226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A6NNCC3AAE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19763794, - 47.97468621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIWW36VL49NY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19763794, - 47.97468621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIWW36VL49NY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.917405, - 46.531099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGEM4LBMME", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37255875, - 45.41546181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LOG48IHQH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.305312, - 47.83651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C7JGYCFWRS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.881069, - 45.28534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFQU7A1NFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.881069, - 45.28534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFQU7A1NFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.407229, - 45.4200166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXFE5YVCKF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.407229, - 45.4200166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MXFE5YVCKF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15086097, - 47.00840403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVXRIKKVWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:30-18:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15086097, - 47.00840403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVXRIKKVWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:30-18:00", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31707683, - 46.18655661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N7CMCZKXED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31707683, - 46.18655661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N7CMCZKXED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31707683, - 46.18655661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N7CMCZKXED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.569035, - 50.598908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYZVCJ7RTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88935, - 50.50677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDOJ4662KH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.242749, - 45.596732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FO6DYAVEZA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1525197, - 48.64828872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J17WV9RWME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1525197, - 48.64828872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J17WV9RWME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23518, - 45.56136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1DFZSVSVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23518, - 45.56136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1DFZSVSVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.584135, - 45.296859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z6FDZYEANJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.136389, - 48.060172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI8V0FNI2LL61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.136389, - 48.060172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI8V0FNI2LL61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36597, - 49.760985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOS8EYYCTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41340377, - 43.54042536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S7OUF5KWNV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806072, - 45.730848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGU09TC7OO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.806072, - 45.730848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGU09TC7OO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.83550402, - 43.64251785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTZPPN1BPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.83550402, - 43.64251785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTZPPN1BPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76673, - 48.4924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGOI4WEQ4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76673, - 48.4924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGOI4WEQ4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23518, - 45.56136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U1DFZSVSVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.569035, - 50.598908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYZVCJ7RTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66641541, - 49.46825563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXIAVCPQMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.569035, - 50.598908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYZVCJ7RTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.137653, - 49.046195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUGQOG3Q0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.137653, - 49.046195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUGQOG3Q0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37998112, - 48.89706454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYWTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37998112, - 48.89706454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYWTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37998112, - 48.89706454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYWTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37998112, - 48.89706454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASYWTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.137653, - 49.046195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUGQOG3Q0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.364032, - 46.653018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHNENTGU8Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.364032, - 46.653018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RHNENTGU8Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4681296, - -21.3289561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.569035, - 50.598908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYZVCJ7RTY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46815625, - -21.3289511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46815089, - -21.3289561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46814331, - -21.3289464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46816129, - -21.3289489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46813475, - -21.3289361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46815448, - -21.3289464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.97879207, - 43.45844847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PAR6SVC8CT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46817615, - -21.3289264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09649, - 49.4552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWNUUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09649, - 49.4552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWNUUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09649, - 49.4552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWNUUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.09649, - 49.4552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWNUUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.97879207, - 43.45844847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PAR6SVC8CT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66641541, - 49.46825563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXIAVCPQMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66641541, - 49.46825563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXIAVCPQMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31707683, - 46.18655661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N7CMCZKXED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61906492, - 45.85932994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4CQ41LAFG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066987, - 48.87171566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEVZGBQW8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066987, - 48.87171566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEVZGBQW8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.77615, - 45.46779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIQW3O95EW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.77615, - 45.46779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIQW3O95EW", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.77615, - 45.46779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YIQW3O95EW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83762445, - 47.01736159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCALTA6R9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83762445, - 47.01736159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCALTA6R9C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83762445, - 47.01736159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCALTA6R9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83762445, - 47.01736159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KCALTA6R9C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74974182, - 45.78160822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQUK3HWUQM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74974182, - 45.78160822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQUK3HWUQM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61906492, - 45.85932994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4CQ41LAFG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61906492, - 45.85932994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4CQ41LAFG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61906492, - 45.85932994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4CQ41LAFG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61906492, - 45.85932994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4CQ41LAFG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066987, - 48.87171566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEVZGBQW8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066987, - 48.87171566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEVZGBQW8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066987, - 48.87171566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEVZGBQW8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83278305, - 45.13686827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYQST9D00N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31707683, - 46.18655661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N7CMCZKXED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.76242327, - 45.21069827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJS7NW956Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.76242327, - 45.21069827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJS7NW956Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.76242327, - 45.21069827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJS7NW956Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.76242327, - 45.21069827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LJS7NW956Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83278305, - 45.13686827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JYQST9D00N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55611542, - 45.04765628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGHLVV2XSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066987, - 48.87171566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YEVZGBQW8O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55611542, - 45.04765628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGHLVV2XSS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11060367, - 49.03166095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJ2TZ198MT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11060367, - 49.03166095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJ2TZ198MT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11060367, - 49.03166095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJ2TZ198MT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11060367, - 49.03166095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJ2TZ198MT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.919372, - 46.537886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B3IBLOQRWG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61906492, - 45.85932994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4CQ41LAFG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883309, - 43.606377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKIXOAPMW8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66641541, - 49.46825563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXIAVCPQMS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883309, - 43.606377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RKIXOAPMW8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870604, - 48.072849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWHJ7GPLUQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870604, - 48.072849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWHJ7GPLUQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870604, - 48.072849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWHJ7GPLUQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870604, - 48.072849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWHJ7GPLUQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.870604, - 48.072849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWHJ7GPLUQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206103, - 48.09960583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARF6FRWSZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206103, - 48.09960583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARF6FRWSZ6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206103, - 48.09960583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARF6FRWSZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206103, - 48.09960583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARF6FRWSZ6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206103, - 48.09960583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARF6FRWSZ6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31206103, - 48.09960583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ARF6FRWSZ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78531, - 43.2498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDCSTE", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78531, - 43.2498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDCSTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.04393, - 48.4501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJEPQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.04393, - 48.4501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJEPQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.297844, - 48.166445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GX0S6HFHSI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.297844, - 48.166445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GX0S6HFHSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.091863, - 45.78029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSIMII44WZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35012218, - 46.95691921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6PHLSC2S6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.610648, - 46.40711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIVUAO3AA0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.610648, - 46.40711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIVUAO3AA0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030098, - 43.769336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HR010KHJWD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030098, - 43.769336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HR010KHJWD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35012218, - 46.95691921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6PHLSC2S6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35012218, - 46.95691921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6PHLSC2S6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35012218, - 46.95691921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6PHLSC2S6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.091863, - 45.78029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GSIMII44WZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14258278, - 48.04076238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UR6Z3WPAH1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14258278, - 48.04076238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UR6Z3WPAH1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14264016, - 48.0407261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UR6Z3WPAH1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14264016, - 48.0407261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UR6Z3WPAH1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14258278, - 48.04076238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UR6Z3WPAH1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.14258278, - 48.04076238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UR6Z3WPAH1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.761998, - 43.5214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWTCYQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66300173, - 47.92060591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGT1LJMVAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01379, - 43.5738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLPKSQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.796775, - 48.546048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFABMXZF7B", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.690373, - 48.181674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMMSBZGWY6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.796775, - 48.546048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFABMXZF7B", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.019182, - 47.982768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UK3CJTWPKE", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.019182, - 47.982768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UK3CJTWPKE", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.690373, - 48.181674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OMMSBZGWY6", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.463361, - 48.418952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPBDRSCXA3", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.463361, - 48.418952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPBDRSCXA3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022432, - 47.303241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCOPFREFDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022432, - 47.303241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCOPFREFDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022432, - 47.303241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCOPFREFDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01379, - 43.5738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLPKSQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66300173, - 47.92060591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LGT1LJMVAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76079398, - 47.88165922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DUSESMVQ5L", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4867079, - 47.0956585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GR5HJDH3RQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44807, - 47.06341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKZZCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4970623, - 47.0903921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCSDDF6LY8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4970623, - 47.0903921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JCSDDF6LY8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48936, - 47.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICP9SCW6WL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44807, - 47.06341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKZZCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48936, - 47.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICP9SCW6WL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48936, - 47.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICP9SCW6WL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75531, - 43.2518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWUWZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75531, - 43.2518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWUWZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.88118532, - 43.5830557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNWNPEG1Z0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.88118532, - 43.5830557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QNWNPEG1Z0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.601068, - 48.020193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MZO1WROI2A", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.601068, - 48.020193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MZO1WROI2A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.76079398, - 47.88165922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DUSESMVQ5L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95996435, - 49.53778454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKQGBDK3E7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95996435, - 49.53778454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UKQGBDK3E7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14688354, - 49.49387319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M97MI77NNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14688354, - 49.49387319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M97MI77NNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14688354, - 49.49387319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M97MI77NNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14688354, - 49.49387319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M97MI77NNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14688354, - 49.49387319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M97MI77NNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14688354, - 49.49387319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M97MI77NNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06978178, - 49.44698715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDCMNUFZH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06978178, - 49.44698715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDCMNUFZH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06978178, - 49.44698715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDCMNUFZH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06978178, - 49.44698715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDCMNUFZH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06978178, - 49.44698715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XDCMNUFZH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16641258, - 45.65972238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZSOUDQLT1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03999, - 43.1475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDQGVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03999, - 43.1475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VDQGVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63722, - 43.4613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LKZWHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02929, - 43.136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTTYQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.48936, - 47.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICP9SCW6WL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4867079, - 47.0956585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GR5HJDH3RQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902219, - 47.157872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3AAB7VF4D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22669529, - 47.49898491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNDBGQMNFP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57849, - 43.4282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJPTGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591807, - 43.6078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKRCQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0320663, - 43.7578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUVZHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.633763, - 44.774632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UBCPEBFYNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 07:00-19:00", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.633763, - 44.774632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UBCPEBFYNE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 07:00-19:00", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.132028, - 48.593161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8GZ5CIJWA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.132028, - 48.593161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8GZ5CIJWA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.919598, - 47.611388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2BTI9BB2V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.919598, - 47.611388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E2BTI9BB2V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.99871, - 45.642324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXS4W24ADV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.99871, - 45.642324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXS4W24ADV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77221, - 50.39142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YU7PPYOYU0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77221, - 50.39142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YU7PPYOYU0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.152751, - 43.090864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUNOSLDDGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.152751, - 43.090864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LUNOSLDDGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0320663, - 43.7578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SUVZHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591807, - 43.6078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WKRCQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625572, - 43.712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATYZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22995082, - 43.99335094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMVWEOVKSB9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.201134, - 43.951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAQVWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57849, - 43.4282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BJPTGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49866, - 43.9812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OLNVAYQDOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.761998, - 43.5214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWTCYQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42744, - 43.8057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LALSSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22995082, - 43.99335094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIMVWEOVKSB9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19905, - 43.4017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NXFKDH", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.770562, - 43.891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSVRYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18727, - 43.7773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPBEPL", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42744, - 43.8057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LALSSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.201134, - 43.951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YAQVWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.046019, - 43.6044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TURUTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.046019, - 43.6044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TURUTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.625572, - 43.712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ATYZJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22669529, - 47.49898491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNDBGQMNFP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886405, - 46.992607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IMOUXSVXCM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90226, - 47.1742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRDWFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.518977, - 48.806386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DWO4IMGBLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96365, - 47.2273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Besacefs", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01959915, - 47.2340438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJANFK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03128, - 47.2392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "besacstpaul", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96365, - 47.2273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Besacefs", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01967, - 47.2341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJANFK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02526, - 47.2351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "besacgranvel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03128, - 47.2392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "besacstpaul", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90226, - 47.1742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRDWFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02107, - 47.2349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Besacstjacq", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02107, - 47.2349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Besacstjacq", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902219, - 47.157872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W3AAB7VF4D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02526, - 47.2351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "besacgranvel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7029, - 44.9449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHJJOKKRAK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.518977, - 48.806386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DWO4IMGBLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.518977, - 48.806386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DWO4IMGBLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.518977, - 48.806386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DWO4IMGBLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47975, - 47.509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUVTU2DO3E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.47975, - 47.509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUVTU2DO3E", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7029, - 44.9449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHJJOKKRAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7029, - 44.9449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHJJOKKRAK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7029, - 44.9449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YHJJOKKRAK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.02598493, - 48.73767482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A5I8VJ3JUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.02598493, - 48.73767482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A5I8VJ3JUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38006236, - 43.67342588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EG8ALQQG74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38006236, - 43.67342588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EG8ALQQG74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29651028, - 49.14390071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TA2FAXN8SN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16641258, - 45.65972238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZSOUDQLT1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16641258, - 45.65972238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZSOUDQLT1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16641258, - 45.65972238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZSOUDQLT1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3083, - 48.9545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCLWYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16499, - 49.1302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUR6AGZUL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16499, - 49.1302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUR6AGZUL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93959, - 48.30733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN9MGBRYJV", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93959, - 48.30733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VN9MGBRYJV", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.250787, - 48.772359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI4N9U0V2FH74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.77454, - 49.1237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFUDNBMUJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.77454, - 49.1237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DFUDNBMUJ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.447477, - 48.63802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6ROSRNMR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.447477, - 48.63802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I6ROSRNMR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16499, - 49.1302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUR6AGZUL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16499, - 49.1302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUR6AGZUL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16499, - 49.1302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUR6AGZUL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741488, - 47.83939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX7L1CMZ069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741907, - 47.8390091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIKOK0H2BMCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741853, - 47.8397671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX8IC2K8Q24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2737274, - 47.8390095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX7Z4MYYXND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741136, - 47.8390122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX736V2AAFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741136, - 47.8390122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX736V2AAFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.274226, - 47.8393865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX6MFX20G9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2737274, - 47.8390095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX7Z4MYYXND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16499, - 49.1302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MUR6AGZUL1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2737274, - 47.8390095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX7Z4MYYXND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741488, - 47.83939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX7L1CMZ069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.274226, - 47.8393865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX6MFX20G9C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19705, - 43.6853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSGFNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.19705, - 43.6853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSGFNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316336, - 43.32296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLI2T0PJ21SQ0A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08837, - 49.3624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVYKCQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3083, - 48.9545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCLWYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741853, - 47.8397671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX8IC2K8Q24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.862838, - 47.646763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKKQY5R3K6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47866314, - 44.82811635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CS0IZRKH3Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67772, - 48.990862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBWAJLPSDU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67772, - 48.990862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JBWAJLPSDU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.368334, - 49.228624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VKVLRRWSU5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.368334, - 49.228624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VKVLRRWSU5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.050956, - 48.904821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMUJWYXIBS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.050956, - 48.904821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SMUJWYXIBS", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18227025, - 45.68803044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OOFJAHVKOS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18227025, - 45.68803044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OOFJAHVKOS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12183284, - 45.77891706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOKKTJKAX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12183284, - 45.77891706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DEOKKTJKAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31019479, - 45.68013251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OB8ETW7HKF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31019479, - 45.68013251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OB8ETW7HKF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.8052, - 48.794997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGRR6UGO53", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.8052, - 48.794997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CGRR6UGO53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47866314, - 44.82811635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CS0IZRKH3Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47866314, - 44.82811635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CS0IZRKH3Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68789218, - 49.28357489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLVQIHN4G6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69210433, - 44.83526429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMVU9IRAML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.862838, - 47.646763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKKQY5R3K6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.862838, - 47.646763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKKQY5R3K6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.862838, - 47.646763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BKKQY5R3K6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.401075, - 43.520193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWCR0TPAP3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.401075, - 43.520193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWCR0TPAP3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.506584, - 48.225123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJH8ANW0TM25Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69210433, - 44.83526429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMVU9IRAML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.68789218, - 49.28357489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VLVQIHN4G6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69210433, - 44.83526429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMVU9IRAML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69210433, - 44.83526429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PMVU9IRAML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256181, - 48.956538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TULYZ5QK8S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256181, - 48.956538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TULYZ5QK8S", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.644976, - 43.665405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WNIBH3CHGH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.644976, - 43.665405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WNIBH3CHGH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741907, - 47.8390091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJIKOK0H2BMCU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2737274, - 47.8390095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX7Z4MYYXND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16641258, - 45.65972238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FZSOUDQLT1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.647216, - 47.263248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVONONBFDE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.481858, - 45.147704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L1DBJXVP6P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.789685, - 43.452269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOXGW7EMIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.789685, - 43.452269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOXGW7EMIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.789685, - 43.452269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOXGW7EMIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.789685, - 43.452269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOXGW7EMIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88988, - 44.960648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNDADH3NG0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88988, - 44.960648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNDADH3NG0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88988, - 44.960648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNDADH3NG0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88988, - 44.960648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RNDADH3NG0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33668507, - 45.78753257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYZW93FWG5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33668507, - 45.78753257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYZW93FWG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62903136, - 48.0967915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBFROMXNDZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.459112, - 48.419313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TK3O6QSGPC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62903136, - 48.0967915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBFROMXNDZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.62903136, - 48.0967915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBFROMXNDZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.481858, - 45.147704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L1DBJXVP6P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13137, - 43.652371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CA9CCNHNBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13137, - 43.652371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CA9CCNHNBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6642695, - 45.74606184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ5GYSMHHX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.11715548, - 46.1551693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKJMLF9CKH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6642695, - 45.74606184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ5GYSMHHX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6642695, - 45.74606184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ5GYSMHHX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6642695, - 45.74606184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ5GYSMHHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6642695, - 45.74606184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJ5GYSMHHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.647216, - 47.263248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVONONBFDE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.459112, - 48.419313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TK3O6QSGPC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741853, - 47.8397671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX8IC2K8Q24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.647216, - 47.263248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVONONBFDE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025142, - 47.30362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UB39VOTDAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025142, - 47.30362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UB39VOTDAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025142, - 47.30362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UB39VOTDAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025142, - 47.30362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UB39VOTDAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025142, - 47.30362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UB39VOTDAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.025142, - 47.30362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UB39VOTDAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04838712, - 44.08577017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WULLAX36A5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04838712, - 44.08577017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WULLAX36A5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49791327, - 45.17219105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAWKTLVRWO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49791327, - 45.17219105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VAWKTLVRWO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2741853, - 47.8397671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJWX8IC2K8Q24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024663, - 47.301901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BALHQJMGSA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.204654, - 46.152179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KQ9R7VJ1CG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.204654, - 46.152179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KQ9R7VJ1CG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49336, - 49.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLFNH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49336, - 49.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLFNH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49336, - 49.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLFNH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49336, - 49.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGLFNH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024663, - 47.301901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BALHQJMGSA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAZ5L2OFUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAZ5L2OFUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAZ5L2OFUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAZ5L2OFUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024957, - 47.302794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VEVCZWWHW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31302, - 49.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUDFPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30784, - 49.8923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QGBZJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77914, - 49.8437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "beaucampsegl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.73995757, - 46.11121481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZ5LMBLQWL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44358433, - 50.30178494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQAS4AR37L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44358433, - 50.30178494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQAS4AR37L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44358433, - 50.30178494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQAS4AR37L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44358433, - 50.30178494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AQAS4AR37L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53655714, - 45.84920245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GN7DXMH144", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10975616, - 49.36198763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UNE1XEQJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86960437, - 49.48253449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLDCBBAVTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86960437, - 49.48253449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLDCBBAVTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73570337, - 48.5974961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFEYWXCVA1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79230519, - 48.57494952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYTNVNRXVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76681958, - 48.54503679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVEKYZHJ5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12717392, - 46.16908758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZERYWQHLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79230519, - 48.57494952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SYTNVNRXVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.71976362, - 48.0198099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZPQJFHGIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87841511, - 47.6791211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPVIHBM6KU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87841511, - 47.6791211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPVIHBM6KU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87841511, - 47.6791211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPVIHBM6KU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87841511, - 47.6791211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FPVIHBM6KU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46184814, - 44.8986309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LCYZMPMIOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73570337, - 48.5974961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFEYWXCVA1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76681958, - 48.54503679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVEKYZHJ5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05305481, - 50.54928528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICFNBQATMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.71976362, - 48.0198099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZPQJFHGIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.71976362, - 48.0198099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZPQJFHGIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.71976362, - 48.0198099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DZPQJFHGIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05305481, - 50.54928528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICFNBQATMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05305481, - 50.54928528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICFNBQATMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0546981, - 50.55028063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICFNBQATMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05305481, - 50.54928528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICFNBQATMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0546981, - 50.55028063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICFNBQATMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92722788, - 49.69853929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJMKO2YP5BIF6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.16298, - 47.7958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CK6TYRZRSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20907889, - 50.69865957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKXDNK2J5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20907889, - 50.69865957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKXDNK2J5W", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20907889, - 50.69865957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKXDNK2J5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20907889, - 50.69865957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKXDNK2J5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20907889, - 50.69865957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKXDNK2J5W", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20907889, - 50.69865957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKXDNK2J5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31413997, - 48.08631445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CVPTFRAEJ5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98099938, - 44.48613399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRAPXJYUMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.98099938, - 44.48613399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRAPXJYUMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.28992534, - 45.25771148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MNZELUZI7A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697092, - 49.320022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RT1WHVS374", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697092, - 49.320022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RT1WHVS374", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697092, - 49.320022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RT1WHVS374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697092, - 49.320022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RT1WHVS374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9459234, - 50.13571053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNM3OXB3T1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9459234, - 50.13571053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNM3OXB3T1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.93129551, - 42.69295972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJ0APYSPRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.93129551, - 42.69295972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJ0APYSPRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.93129551, - 42.69295972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJ0APYSPRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.93129551, - 42.69295972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EJ0APYSPRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.138694, - 48.70367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIIF9G1T2E4ZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.138694, - 48.70367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIIF9G1T2E4ZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51739226, - 47.68397952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYGBUJHGBQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51739226, - 47.68397952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYGBUJHGBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51739226, - 47.68397952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYGBUJHGBQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9299, - 49.51772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HV7UHB3KKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51739226, - 47.68397952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYGBUJHGBQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32445998, - 47.61544993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MA9BCHTCYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32445998, - 47.61544993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MA9BCHTCYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32445998, - 47.61544993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MA9BCHTCYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32445998, - 47.61544993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MA9BCHTCYB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51739226, - 47.68397952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYGBUJHGBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51739226, - 47.68397952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CYGBUJHGBQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3010889, - 45.53600566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBNL2YXVNI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3010889, - 45.53600566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBNL2YXVNI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29830986, - 45.54410263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3CWYWKLKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29830986, - 45.54410263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3CWYWKLKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29830986, - 45.54410263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3CWYWKLKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29830986, - 45.54410263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3CWYWKLKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29830986, - 45.54410263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3CWYWKLKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29830986, - 45.54410263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G3CWYWKLKX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67798147, - 43.37472105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RE6ZKCKSUU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76363868, - 45.19216184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9THS0ZXQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59145925, - 49.63226055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GABMQWRAIZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76363868, - 45.19216184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9THS0ZXQQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76363868, - 45.19216184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9THS0ZXQQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7634402, - 45.19078196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4TBD6CVLX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76363868, - 45.19216184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9THS0ZXQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7634402, - 45.19078196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4TBD6CVLX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7634402, - 45.19078196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4TBD6CVLX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76363868, - 45.19216184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9THS0ZXQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7634402, - 45.19078196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4TBD6CVLX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7634402, - 45.19078196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4TBD6CVLX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7634402, - 45.19078196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M4TBD6CVLX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76363868, - 45.19216184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T9THS0ZXQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99635721, - 44.36058652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJR8Z3PDHQEH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99635721, - 44.36058652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJR8Z3PDHQEH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65781418, - 49.07382725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XF6G40NMKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65781418, - 49.07382725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XF6G40NMKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798617, - 50.54055576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3TJBYM5LC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798617, - 50.54055576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3TJBYM5LC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798625, - 50.5405618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLUVTVJOGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798625, - 50.5405618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLUVTVJOGE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798617, - 50.54055576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3TJBYM5LC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798625, - 50.5405618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLUVTVJOGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798617, - 50.54055576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O3TJBYM5LC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798625, - 50.5405618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YLUVTVJOGE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41586882, - 48.79479325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NCNAZHKRLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99635721, - 44.36058652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJR8Z3PDHQEH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99635721, - 44.36058652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJR8Z3PDHQEH0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99635721, - 44.36058652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJR8Z3PDHQEH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3347204, - 47.14713038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XGXZ9LPBQY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99635721, - 44.36058652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJR8Z3PDHQEH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.793664, - 47.66908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UX2IS8EDAX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74550877, - 50.4868159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTNVJKIPME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74550877, - 50.4868159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTNVJKIPME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74550877, - 50.4868159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTNVJKIPME", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74550877, - 50.4868159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JTNVJKIPME", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.07815007, - 49.033704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AEFATBNYGL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41551462, - 51.04589991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9CNIAGWFB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41551462, - 51.04589991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9CNIAGWFB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41551462, - 51.04589991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9CNIAGWFB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41551462, - 51.04589991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "S9CNIAGWFB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99314212, - 45.63022046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J9YFZ96UNZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91664318, - 45.89638519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R82R4YH1ZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91466843, - 45.89626572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUD0LV94TU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91466843, - 45.89626572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUD0LV94TU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54661705, - 46.72399705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAHQKZVTML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54661705, - 46.72399705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAHQKZVTML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54661705, - 46.72399705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAHQKZVTML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54661705, - 46.72399705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KAHQKZVTML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89759651, - 48.40075355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRYGY9TY8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89759651, - 48.40075355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRYGY9TY8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89759651, - 48.40075355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRYGY9TY8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.89759651, - 48.40075355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRYGY9TY8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00039995, - 49.28251109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXZL7KODSA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00039995, - 49.28251109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXZL7KODSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00039995, - 49.28251109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXZL7KODSA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00039995, - 49.28251109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXZL7KODSA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77789362, - 46.51400657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XPTGCMDV0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80743472, - 48.06397015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBULJZHSML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91664318, - 45.89638519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R82R4YH1ZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91620303, - 45.89561984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WT3OVRA4UG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71811691, - 45.18910526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGMLBZ12K4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08129056, - 48.0158875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXLCWHBKRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85628406, - 48.64680402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CITGXODUAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85628406, - 48.64680402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CITGXODUAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85628406, - 48.64680402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CITGXODUAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.85628406, - 48.64680402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CITGXODUAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71811691, - 45.18910526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGMLBZ12K4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71811691, - 45.18910526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AGMLBZ12K4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14377052, - 47.6447619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLINATGFY10GT3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.08114988, - 47.43337469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SILXS1RMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.08114988, - 47.43337469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SILXS1RMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.08114988, - 47.43337469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SILXS1RMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.08114988, - 47.43337469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SILXS1RMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.08114988, - 47.43337469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SILXS1RMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.08114988, - 47.43337469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SILXS1RMLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14377052, - 47.6447619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLINATGFY10GT3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27597437, - 41.59735225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2EUNOUMJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.33768229, - 48.19015659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUUTZ5ZPWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.33768229, - 48.19015659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUUTZ5ZPWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.33768229, - 48.19015659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUUTZ5ZPWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.33768229, - 48.19015659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AUUTZ5ZPWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05470158, - 46.04503677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL2OE745FF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05470158, - 46.04503677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL2OE745FF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05470158, - 46.04503677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL2OE745FF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05470158, - 46.04503677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL2OE745FF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05470158, - 46.04503677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL2OE745FF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05470158, - 46.04503677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XL2OE745FF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71553555, - 47.37369171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PGRUBML7KD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.71578361, - 48.10448437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FADPDFV1VI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68367112, - 48.13823803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G7YCDUZGUS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00039995, - 49.28251109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXZL7KODSA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00184627, - 49.28107517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WV21IYOQMR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00184627, - 49.28107517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WV21IYOQMR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.04559503, - 43.73217763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJ0HFJ186C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.04559503, - 43.73217763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJ0HFJ186C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.04559503, - 43.73217763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJ0HFJ186C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.04559503, - 43.73217763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJ0HFJ186C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12308566, - 49.05785284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C0EV8XYVBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0783013, - 47.64704237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYKZJX4FHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0783013, - 47.64704237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYKZJX4FHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0783013, - 47.64704237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYKZJX4FHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0783013, - 47.64704237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYKZJX4FHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0783013, - 47.64704237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYKZJX4FHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0783013, - 47.64704237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZYKZJX4FHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.99773851, - 48.67870648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4SFETIVZ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38309193, - 45.47548009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRR1WB5NO2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04613784, - 48.73360275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGVGVFMDMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04613784, - 48.73360275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KGVGVFMDMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03988977, - 48.73041824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQJ9C4BJCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.03988977, - 48.73041824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQJ9C4BJCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04323706, - 48.73226878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCNKO7ZKC7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5473872, - 42.26291493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7SFAZJTXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5473872, - 42.26291493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7SFAZJTXG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62493383, - 45.741693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9EIX80RW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38309193, - 45.47548009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JRR1WB5NO2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80605137, - 43.43204993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X6FFTH2H2I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80605137, - 43.43204993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X6FFTH2H2I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80605137, - 43.43204993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X6FFTH2H2I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80605137, - 43.43204993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X6FFTH2H2I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62493383, - 45.741693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9EIX80RW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62493383, - 45.741693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9EIX80RW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5473872, - 42.26291493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7SFAZJTXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62493383, - 45.741693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ST9EIX80RW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26086318, - 49.87034034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVCJMMNKKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26086318, - 49.87034034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVCJMMNKKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26086318, - 49.87034034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVCJMMNKKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26086318, - 49.87034034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IVCJMMNKKB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5473872, - 42.26291493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V7SFAZJTXG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00039995, - 49.28251109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXZL7KODSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66996705, - 47.46494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVPEOSH3BV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00184627, - 49.28107517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WV21IYOQMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00184627, - 49.28107517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WV21IYOQMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21628188, - 46.98382924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAXAX0EZZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21628188, - 46.98382924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAXAX0EZZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.07381283, - 49.38695036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDZIWFR8Y4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69149513, - 44.88383502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JJVAYN6WHW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.973002, - 48.657533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XARMSHHUZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43341, - 49.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCOGHNKVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.973002, - 48.657533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XARMSHHUZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.973002, - 48.657533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XARMSHHUZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.973002, - 48.657533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XARMSHHUZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.973002, - 48.657533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XARMSHHUZH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.973002, - 48.657533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XARMSHHUZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66963499, - 46.82118142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LC5TWHDA5O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.07815007, - 49.033704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AEFATBNYGL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.74828741, - 43.43612069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSOAC8FZQK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77914, - 49.8437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "beaucampsegl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3919, - 49.8582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Bovesoreno", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00316, - 50.0094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZROITA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37073, - 49.8643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Bovesindes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55556, - 50.3396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "fortmahonparis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55556, - 50.3396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "fortmahonparis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56457, - 50.3346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJSVRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99244, - 50.0106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Longprestade", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99244, - 50.0106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Longprestade", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2748, - 50.0338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEXNBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71779, - 49.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Senarpaum", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34641, - 49.8592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "cagnybarbusse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82875, - 50.1039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbevital", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36584, - 49.8644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bovesfde80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26056625, - 50.00290897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JEGRRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75093, - 50.0251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVTPRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82567, - 50.1022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXXBPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56457, - 50.3346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJSVRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2748, - 50.0338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TEXNBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.43693124, - 42.62800905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CF7MTSVDNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71779, - 49.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Senarpaum", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31526251, - 44.93999197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5RGFW83IU2L", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31526251, - 44.93999197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ5RGFW83IU2L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.19972481, - 42.45139658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MK1KUGXZJN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.19972481, - 42.45139658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MK1KUGXZJN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48123, - 50.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEEUFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70682475, - 49.81575871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJXCC6BZCI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.00316, - 50.0094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZROITA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94704, - 50.1327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aebbfece386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94704, - 50.1327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58aebbfece386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70682475, - 49.81575871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PJXCC6BZCI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7295, - 50.0924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Miraumonmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79988, - 49.8186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BZJXPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48123, - 50.0887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BEEUFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14021, - 50.0526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFTYGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14021, - 50.0526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFTYGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.546898, - 49.721911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMJLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.54158, - 50.0717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Woincourtkleb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3163, - 49.8155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Sainsenamien", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3163, - 49.8155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Sainsenamien", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08244, - 49.8227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Quevauvifet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59817, - 50.0689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "feuquiereszi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08244, - 49.8227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Quevauvifet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31397, - 49.8367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXFFCP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31397, - 49.8367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QXFFCP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31327, - 50.0036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PKNFQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38828882, - 50.0634183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCSM2FPN91", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34355, - 49.8875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MBFALP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38828882, - 50.0634183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCSM2FPN91", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38828882, - 50.0634183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCSM2FPN91", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51509, - 49.9121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "corbie11nov", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51509, - 49.9121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "corbie11nov", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88484, - 50.2525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNVSCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88484, - 50.2525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KNVSCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31327, - 50.0036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PKNFQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.54158, - 50.0717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Woincourtkleb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82567, - 50.1022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XXXBPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.54158, - 50.0717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Woincourtkleb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21363, - 49.9392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Stsauveur", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45285, - 50.0733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stquenteglise", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21363, - 49.9392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Stsauveur", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3919, - 49.8582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Bovesoreno", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83891, - 50.1103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYEBQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45285, - 50.0733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stquenteglise", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59817, - 50.0689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "feuquiereszi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.54158, - 50.0717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Woincourtkleb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57406822, - 50.06773373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "fressenneti", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.44889318, - 50.10042512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ault11nov1918", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.57406822, - 50.06773373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "fressenneti", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.546898, - 49.721911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMJLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26056625, - 50.00290897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JEGRRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79988, - 49.8186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BZJXPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4552586, - 50.11000381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ault11nov1918", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.536033, - 46.675049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUUY1QGPQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.536033, - 46.675049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TNUUY1QGPQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80631757, - 48.87602133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6TZIUSYVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75301, - 48.5761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRYYWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.269749, - 48.770422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UY61K2MLMX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.269749, - 48.770422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UY61K2MLMX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.269749, - 48.770422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UY61K2MLMX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1649234, - 41.3905216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHU7YHXF1J6VY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1649234, - 41.3905216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLHU7YHXF1J6VY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14318, - 45.7882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHCTBI3W6P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14318, - 45.7882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHCTBI3W6P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14318, - 45.7882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHCTBI3W6P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14318, - 45.7882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHCTBI3W6P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73864, - 48.5814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTRSPB", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70818, - 48.5291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQAMRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73864, - 48.5814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RTRSPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76987, - 48.5923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMBXBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70818, - 48.5291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQAMRV", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75247, - 48.587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASSGXF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.269749, - 48.770422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UY61K2MLMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.269749, - 48.770422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UY61K2MLMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00", - "start_date": "2022-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1708877, - 42.29943501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWBBXYWGGI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.8048678, - 41.95966708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LIRJJZROMK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.8048678, - 41.95966708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LIRJJZROMK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.45076287, - 42.54955641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B4S2UL0ROL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.495616, - 48.455622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBLJBTXKT8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.495616, - 48.455622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBLJBTXKT8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.495616, - 48.455622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBLJBTXKT8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.495616, - 48.455622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBLJBTXKT8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.727858, - 48.621889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C1UPCJWJBM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75247, - 48.587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASSGXF", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75301, - 48.5761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRYYWZ", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80631757, - 48.87602133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6TZIUSYVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75043642, - 48.60862138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XETDNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.720353, - 47.654622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRFUTY0EAR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.425199, - 48.440343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQYT3DE6ZN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.425199, - 48.440343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQYT3DE6ZN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.425199, - 48.440343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQYT3DE6ZN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.425199, - 48.440343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQYT3DE6ZN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.739464, - 48.501783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DP1GJBV0RC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.32667051, - 47.78896545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LTNIZVT1SZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.32667051, - 47.78896545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LTNIZVT1SZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.739464, - 48.501783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DP1GJBV0RC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.739464, - 48.501783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DP1GJBV0RC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15163708, - 47.01451245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NV41MYEPGH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80631757, - 48.87602133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6TZIUSYVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80631757, - 48.87602133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6TZIUSYVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80631757, - 48.87602133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6TZIUSYVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80631757, - 48.87602133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6TZIUSYVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.46104976, - 48.74956787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PM3WP4TS73", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.074529, - 47.662287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJUJZ8EFOO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.074529, - 47.662287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GJUJZ8EFOO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76138, - 48.5808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGMSKN", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75916, - 48.5945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NETJXB", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76987, - 48.5923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AMBXBA", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75043642, - 48.60862138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XETDNE", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75916, - 48.5945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NETJXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71339, - 48.5802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZYXEF", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71339, - 48.5802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WZYXEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76138, - 48.5808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGMSKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47967769, - 48.41308043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFRX2Z7OPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.46104976, - 48.74956787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PM3WP4TS73", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.425199, - 48.440343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQYT3DE6ZN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.720353, - 47.654622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRFUTY0EAR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47967769, - 48.41308043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QFRX2Z7OPB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.96248, - 48.056962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHEETVQ3IH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.720353, - 47.654622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IRFUTY0EAR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6347, - 50.3164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXESMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6347, - 50.3164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SXESMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34355, - 49.8875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MBFALP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90787, - 49.7763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mesnilecoles", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60418, - 49.7547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hangestmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60418, - 49.7547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hangestmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1435, - 49.946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Picquignygare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99503, - 50.079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "aillyhautcloc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65116478, - 50.00111548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENT7R39M9K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88311, - 50.0638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "eaucourtpont", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99503, - 50.079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "aillyhautcloc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25249, - 49.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "flersparis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82438593, - 50.20570326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H6BUUJO0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82438593, - 50.20570326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H6BUUJO0HS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63007, - 50.1874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stvalerysomme", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3058, - 49.8894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGXHDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30094, - 49.8965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCDEAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30094, - 49.8965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RCDEAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.64344, - 50.1832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stvalperree", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1435, - 49.946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Picquignygare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25249, - 49.7366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "flersparis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12083, - 50.0741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "domartetoile", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98929, - 49.7777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "poixgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65116478, - 50.00111548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENT7R39M9K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87841, - 49.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hallencourtrep", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98128, - 49.7751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "poixrepublique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5901, - 50.0709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "feuquebaie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5901, - 50.0709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "feuquebaie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98128, - 49.7751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "poixrepublique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15622483, - 49.74154882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "contygare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12083, - 50.0741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "domartetoile", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15622483, - 49.74154882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "contygare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98929, - 49.7777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "poixgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87841, - 49.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hallencourtrep", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.76749, - 49.9557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "oisemont", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.76749, - 49.9557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "oisemont", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.88311, - 50.0638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "eaucourtpont", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56401, - 50.215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "cayeuxargou", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90787, - 49.7763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "mesnilecoles", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01321, - 50.0101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "conde22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30094, - 49.8964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYXQKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5247, - 50.0124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEFWCP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8217, - 50.0498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XREDGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.81289081, - 50.15544663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCDNKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3022, - 50.1682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPVMTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3022, - 50.1682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UPVMTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47289, - 50.0369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HLQJWN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2906, - 49.8898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCYXHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31302, - 49.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUDFPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34536, - 50.157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "doullenspisci", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2906, - 49.8898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCYXHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266507, - 49.897935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JGPERV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2906, - 49.8898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCYXHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2906, - 49.8898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCYXHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31302, - 49.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HUDFPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29526, - 49.8878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BPJAZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8217, - 50.0498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XREDGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04167, - 50.0336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PBCCRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.81289081, - 50.15544663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XCDNKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30029, - 49.8926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZJUJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30024, - 49.8925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZJUJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30024, - 49.8925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZJUJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31097, - 49.8912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NUUUFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30029, - 49.8926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SZJUJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04167, - 50.0336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PBCCRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30094, - 49.8964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYXQKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56401, - 50.215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "cayeuxargou", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8654, - 50.0086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FFVRKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9789, - 50.0389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKKLGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7041, - 50.1874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CWRWXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7041, - 50.1874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CWRWXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9789, - 50.0389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QKKLGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3058, - 49.8894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YGXHDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8654, - 50.0086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FFVRKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65116478, - 50.00111548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENT7R39M9K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90322, - 50.0542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Pontremysav", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83149, - 50.1058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbeviroy", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.54923, - 50.0905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBRCYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39232, - 49.7994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLFNQF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39232, - 49.7994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SLFNQF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39839, - 49.8774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "glisymairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39265, - 50.0858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SNGDFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39265, - 50.0858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SNGDFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75093, - 50.0251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WVTPRJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82875, - 50.1039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbevital", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53337, - 50.0721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXTYVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38758, - 50.0655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STFUZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38758, - 50.0655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "STFUZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47597, - 49.7768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZXHUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.82981, - 49.874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "estreescomcom", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.82981, - 49.874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "estreescomcom", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.54923, - 50.0905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WBRCYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50076, - 49.9112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Corbiegare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39839, - 49.8774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "glisymairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53337, - 50.0721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXTYVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25834, - 50.1074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLQVXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83478, - 50.1061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbevilmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83149, - 50.1058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbeviroy", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83241, - 50.1046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbevilpont", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56131, - 49.9857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gamachesmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65116478, - 50.00111548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENT7R39M9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.65116478, - 50.00111548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ENT7R39M9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56131, - 49.9857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gamachesmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10149066, - 49.97754705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W39IDRPDKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25834, - 50.1074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLQVXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10149066, - 49.97754705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W39IDRPDKI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83478, - 50.1061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbevilmair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83241, - 50.1046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbevilpont", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83392, - 50.1087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbecapu", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83392, - 50.1087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Abbecapu", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.547, - 50.3221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NGTDGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.547, - 50.3221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NGTDGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50076, - 49.9112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Corbiegare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94523, - 49.9649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "airainesseym", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44312, - 49.9422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJLBKW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6087, - 50.061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "feuquieremai", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53544, - 50.0747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "frivilleescar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07323, - 49.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hamespla", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333792, - 50.108029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXGKYT9YHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333792, - 50.108029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LXGKYT9YHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1629, - 50.1325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bernaduprez", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1629, - 50.1325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bernaduprez", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62313, - 50.214967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQIL9BNYXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62313, - 50.214967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IQIL9BNYXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36584, - 49.8644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "bovesfde80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37073, - 49.8643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Bovesindes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.924962, - 49.759965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I76W2YJNXA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.924962, - 49.759965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "I76W2YJNXA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.90322, - 50.0542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Pontremysav", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.94523, - 49.9649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "airainesseym", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6087, - 50.061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "feuquieremai", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53544, - 50.0747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "frivilleescar", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01321, - 50.0101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "conde22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77945, - 50.2116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "nouvionmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44312, - 49.9422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WJLBKW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47597, - 49.7768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JZXHUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.06713, - 49.7043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLSJNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83717, - 50.1072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGMDVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.83717, - 50.1072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EGMDVD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.06713, - 49.7043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLSJNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63651, - 50.1836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stvalerystpier", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82272, - 50.3471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "argoulesval", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63651, - 50.1836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stvalerystpier", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07323, - 49.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "hamespla", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56131, - 49.9857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gamachesmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56131, - 49.9857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "gamachesmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.77945, - 50.2116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "nouvionmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82272, - 50.3471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "argoulesval", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.43693124, - 42.62800905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CF7MTSVDNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.88945378, - 42.61074882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPVLVLOVWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23304351, - 49.11482753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWFF9DHV9P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.82755, - 48.6581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R9JCWHPGKT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71734, - 48.595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBETNRGWTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71291, - 48.6692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H2EMHAFSLS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.55657, - 48.5864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVTKWXLYSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60808, - 48.5037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POVZLZ0M4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.62519, - 48.5779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4V8VL9UIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70227, - 48.6259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A3MGRRDRGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7264, - 48.4703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJWTUKQRTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.634685, - 48.532983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MBIIAYIANW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7414585, - 48.63558163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTQXSIJ3RN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.634685, - 48.532983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MBIIAYIANW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76165303, - 48.59813197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRZVCPI5NC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76165303, - 48.59813197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRZVCPI5NC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7504505, - 48.6086072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYYQLRBQLG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75315794, - 48.5760783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHG7FBMQYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70962, - 48.5904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P5V9XI99Z7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7118, - 48.6001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A8NFE2AVUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65306, - 48.5868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPIAIAYUIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.76546431, - 41.94692817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P2VQPNZVP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71434, - 48.4875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGX350GV80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79087169, - 48.59887343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E7KRECKCYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74978484, - 48.60648253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPGVWJFVRH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76008955, - 48.56607557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSDP4YBGRR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74978484, - 48.60648253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MPGVWJFVRH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70678376, - 48.56592647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRG9ZX5F3C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.711155, - 48.579078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJGQG93S4C", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70678376, - 48.56592647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NRG9ZX5F3C", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74069188, - 48.60021087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFBKCUHMCA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74069188, - 48.60021087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFBKCUHMCA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.711155, - 48.579078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJGQG93S4C", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73150775, - 48.57936478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRZ9UEOLLL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70918636, - 48.59542856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOJVP7XK3S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73150775, - 48.57936478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PRZ9UEOLLL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75911345, - 48.57833911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V2WYTXUEVW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75911345, - 48.57833911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V2WYTXUEVW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75255764, - 48.58694488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AXT8TBMQPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7504505, - 48.6086072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VYYQLRBQLG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75255764, - 48.58694488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AXT8TBMQPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73469123, - 48.5403391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFZRLAD58K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64040425, - 48.51599671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZSKCRY3NQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695667, - 48.652245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "URXXMQBEJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76678128, - 48.5557229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M6GVZ6JYET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69828916, - 48.68518797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XUJE2L5JUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69828916, - 48.68518797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XUJE2L5JUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77268, - 48.578641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OOWFA5K8PB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75189555, - 48.56849302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9PUFD9IQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75189555, - 48.56849302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N9PUFD9IQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695667, - 48.652245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "URXXMQBEJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76552942, - 48.58840328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOREKRBQZH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76552942, - 48.58840328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FOREKRBQZH", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.738545, - 48.584503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q60YP7CO65", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75325004, - 48.59336011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SFFNZXZEQO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79588108, - 48.57091745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWENEDCQPA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79588108, - 48.57091745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UWENEDCQPA", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64040425, - 48.51599671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HZSKCRY3NQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76678128, - 48.5557229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M6GVZ6JYET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.762804, - 48.539679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWEZEFEDKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.744273, - 48.5535346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWVTOWOSAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74018981, - 48.57834976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIRIL0QKRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.746767, - 48.578964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJZPGZZJNW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.746767, - 48.578964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QJZPGZZJNW", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75676, - 48.576303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNAYVYPNUE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75676, - 48.576303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNAYVYPNUE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74018981, - 48.57834976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JIRIL0QKRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74341535, - 48.59109997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB9F5TKRPJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.762804, - 48.539679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YWEZEFEDKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74341535, - 48.59109997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB9F5TKRPJ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74919464, - 48.58859135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M53GGW3ONZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.744273, - 48.5535346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JWVTOWOSAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74653853, - 48.55950369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSR5CVUBSN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74653853, - 48.55950369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HSR5CVUBSN", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77268, - 48.578641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OOWFA5K8PB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79087169, - 48.59887343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E7KRECKCYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76008955, - 48.56607557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NSDP4YBGRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75792403, - 48.58786038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTAUCDKBHT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7264, - 48.4703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZJWTUKQRTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08572, - 43.2086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58e28a0851f24", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08572, - 43.2086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "58e28a0851f24", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50304314, - 47.48143352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSKY08VNWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50304314, - 47.48143352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSKY08VNWK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.70724, - 47.62246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OY9U2KDFHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.70724, - 47.62246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OY9U2KDFHP", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38042863, - 43.33825342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVL8IDQLIP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23304351, - 49.11482753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWFF9DHV9P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.733662, - 47.653039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H7PMEQE0EW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.047618, - 48.719808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XJ5L0C9ZRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.047618, - 48.719808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XJ5L0C9ZRQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.606897, - 43.652523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ8GYI0419GG7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.606897, - 43.652523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJ8GYI0419GG7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38042863, - 43.33825342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVL8IDQLIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38042863, - 43.33825342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVL8IDQLIP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13152792, - 50.60986071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OVRR1M5NIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71291, - 48.6692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H2EMHAFSLS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70227, - 48.6259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A3MGRRDRGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70918636, - 48.59542856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOJVP7XK3S", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69365, - 48.5988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKMDJTOUDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64368157, - 48.55733488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8A8OYWIZN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.64368157, - 48.55733488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N8A8OYWIZN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.789755, - 48.613729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4XRQBUHJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.68763, - 48.6051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSXPKS4QIH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69365, - 48.5988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NKMDJTOUDC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.55657, - 48.5864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YVTKWXLYSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60808, - 48.5037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POVZLZ0M4M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74951, - 48.5489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRBN9SNHY0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.781838, - 48.611075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z34FCKPU91", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.789755, - 48.613729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N4XRQBUHJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75315794, - 48.5760783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UHG7FBMQYH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.781838, - 48.611075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Z34FCKPU91", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72328975, - 48.60248479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4ZNRA9TDQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72328975, - 48.60248479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4ZNRA9TDQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75792403, - 48.58786038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTAUCDKBHT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69668, - 48.593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNOETWSQ8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69643, - 48.5867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W2JSXIFDDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.67902255, - 48.49009256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LZBDAYDH0Y", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.82755, - 48.6581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R9JCWHPGKT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.68763, - 48.6051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSXPKS4QIH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.62519, - 48.5779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "F4V8VL9UIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7118, - 48.6001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A8NFE2AVUQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71734, - 48.595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GBETNRGWTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69668, - 48.593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BNOETWSQ8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70962, - 48.5904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "P5V9XI99Z7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71434, - 48.4875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WGX350GV80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73469123, - 48.5403391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TFZRLAD58K", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.65306, - 48.5868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPIAIAYUIP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69643, - 48.5867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W2JSXIFDDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74951, - 48.5489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LRBN9SNHY0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.67902255, - 48.49009256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LZBDAYDH0Y", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780618, - 48.600507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVWJDFBNAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.780618, - 48.600507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XVWJDFBNAT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.738545, - 48.584503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q60YP7CO65", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74341535, - 48.59109997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MB9F5TKRPJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6824582, - 48.55583297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVSTOGZT0R", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48143, - 43.5669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDHQTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66772761, - 44.8484796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPNGGQLI7H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66772761, - 44.8484796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPNGGQLI7H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.371961, - 43.808823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YSZ671LQHR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30565142, - 46.55255239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A46LM1G17J", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30565142, - 46.55255239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A46LM1G17J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30565142, - 46.55255239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A46LM1G17J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09245, - 43.619574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WQLJIEOSPD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.052942, - 50.551433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPW4BJOEDV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120852, - 50.641032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYNNVONFVX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-17:45", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66772761, - 44.8484796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPNGGQLI7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66772761, - 44.8484796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPNGGQLI7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66772761, - 44.8484796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YPNGGQLI7H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64034267, - 43.66406096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCN2TV5DLV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.402546, - 43.507929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQFRQ15WCK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.402546, - 43.507929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQFRQ15WCK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10953875, - 44.12057025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DYII1VYXNM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64034267, - 43.66406096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCN2TV5DLV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64034267, - 43.66406096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCN2TV5DLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64034267, - 43.66406096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MCN2TV5DLV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45660198, - 43.490553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SJWL0JJWCZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44292094, - 43.92378544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSAZHIGU1P", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13058583, - 44.60943264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QUXPFGFXNE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23002847, - 43.42249234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQ4MET9QHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13202835, - 43.71686462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQHZ79XAXR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44292094, - 43.92378544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSAZHIGU1P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44292094, - 43.92378544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSAZHIGU1P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44292094, - 43.92378544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSAZHIGU1P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48143, - 43.5669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDHQTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48143, - 43.5669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDHQTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.402546, - 43.507929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQFRQ15WCK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48143, - 43.5669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NDHQTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93933154, - 43.58083775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYOKNX7TZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-10:00", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93933154, - 43.58083775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IYOKNX7TZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-10:00", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839895, - 45.737464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XWE4EWS3MA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.192515, - 45.733642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRCUMHLPYR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.192515, - 45.733642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRCUMHLPYR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.365753, - -21.279779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POYTUZYBZT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47946398, - 43.56572253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOPBHY1L2B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47946398, - 43.56572253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XOPBHY1L2B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJHMGCHDSF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.365753, - -21.279779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POYTUZYBZT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJHMGCHDSF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.365753, - -21.279779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "POYTUZYBZT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJHMGCHDSF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95629924, - 43.30156711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KA6HPW7M1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 166.462, - -22.2461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZSSVQ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 166.462, - -22.2461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZSSVQ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.35392, - 47.8642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXFWFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.35392, - 47.8642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VXFWFN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858266, - 50.10722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AR9PTVOSJU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:30-17:00", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95629924, - 43.30156711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KA6HPW7M1J", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.402546, - 43.507929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQFRQ15WCK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.402546, - 43.507929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TQFRQ15WCK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6824582, - 48.55583297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BVSTOGZT0R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7087178, - 48.52607392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ET9YQKHSFE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69038189, - 48.53288699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W0RMJ2P85R", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76878, - 48.6012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFBVDEVTCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71293388, - 48.6110297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKLD3MTZJB", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66684282, - 48.58700166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOHVRKIAYW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66684282, - 48.58700166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BOHVRKIAYW", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73381, - 48.6156857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PL7JHFSCKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75065853, - 48.60082459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUW4LZ9TPI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69120588, - 48.55196971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNX2FL4ZPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69120588, - 48.55196971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DNX2FL4ZPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73614247, - 48.60646479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUMX4SSUME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73614247, - 48.60646479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZUMX4SSUME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75065853, - 48.60082459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WUW4LZ9TPI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71293388, - 48.6110297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HKLD3MTZJB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75126537, - 48.65379283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKVA6WUBXU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71717115, - 48.64182763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3JWK6WYPH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.69038189, - 48.53288699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "W0RMJ2P85R", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.78046908, - 48.58577742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWEIOZ4CNV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75677983, - 48.5720959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDCFCTPI49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7639826, - 48.57274546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETJO1NSOE0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77001443, - 48.59239504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQ2K0BBPT6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77001443, - 48.59239504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQ2K0BBPT6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.73381, - 48.6156857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PL7JHFSCKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75325004, - 48.59336011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SFFNZXZEQO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77311452, - 48.56601877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWVZRTY6Z8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77311452, - 48.56601877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PWVZRTY6Z8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74919464, - 48.58859135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M53GGW3ONZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75677983, - 48.5720959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JDCFCTPI49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72367353, - 48.56510643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6VC4OKUHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72367353, - 48.56510643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6VC4OKUHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7639826, - 48.57274546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ETJO1NSOE0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.78046908, - 48.58577742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FWEIOZ4CNV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77277653, - 48.58551838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZU4GWOCMMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.77277653, - 48.58551838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZU4GWOCMMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.71717115, - 48.64182763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "N3JWK6WYPH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7087178, - 48.52607392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ET9YQKHSFE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75892412, - 48.62711533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJRBFAQ6K8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75126537, - 48.65379283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKVA6WUBXU", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61308864, - 48.55933735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXZDFS3J0N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66487713, - 48.49009967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SO1ITMVT8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70999028, - 48.54336154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXEHLA3ZLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76584763, - 48.6120157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJRTM1TGUD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75144085, - 48.61340599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JE9YSXAOIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75144085, - 48.61340599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JE9YSXAOIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.708257, - 48.636797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGP2D1IL1W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.708257, - 48.636797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VGP2D1IL1W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76584763, - 48.6120157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJRTM1TGUD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76907797, - 48.62156963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSPUBKEN0J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72080967, - 48.52261672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3QEBNRC6N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72080967, - 48.52261672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y3QEBNRC6N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.70999028, - 48.54336154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GXEHLA3ZLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76907797, - 48.62156963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KSPUBKEN0J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75892412, - 48.62711533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJRBFAQ6K8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61308864, - 48.55933735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RXZDFS3J0N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60441602, - 48.57708272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HC303G1OWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60441602, - 48.57708272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HC303G1OWT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75548706, - 48.62134977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X8N8GBP7Y5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.76878, - 48.6012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YFBVDEVTCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.75548706, - 48.62134977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X8N8GBP7Y5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.59062026, - 48.56154565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQYRC2FCMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.59062026, - 48.56154565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QQYRC2FCMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72863261, - 48.61987814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE8TVC3QFK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72863261, - 48.61987814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YE8TVC3QFK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.681792, - 48.55731002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U3BIAJ1J75", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.66487713, - 48.49009967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SO1ITMVT8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.681792, - 48.55731002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "U3BIAJ1J75", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6880618, - 48.57846688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICW8FUK8MQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74000524, - 48.63124584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOTMBBSOOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.74000524, - 48.63124584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QOTMBBSOOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7414585, - 48.63558163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MTQXSIJ3RN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6880618, - 48.57846688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ICW8FUK8MQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.72042, - 49.0861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valmontgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.380722, - 48.022035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYEYOSNA3V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21187587, - 48.91193065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JSQOWLLCAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44575301, - 48.63836796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CCMOAYZWCU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44575301, - 48.63836796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CCMOAYZWCU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44575301, - 48.63836796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CCMOAYZWCU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44575301, - 48.63836796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CCMOAYZWCU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.13137, - 48.8092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VJBXXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.13137, - 48.8092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VJBXXF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24076, - 48.9003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PA2YDVV83M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.380722, - 48.022035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYEYOSNA3V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3667517, - 43.12493158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYXF37NMTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3667517, - 43.12493158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYXF37NMTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3667517, - 43.12493158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYXF37NMTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3667517, - 43.12493158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYXF37NMTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:typee": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3667517, - 43.12493158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYXF37NMTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3667517, - 43.12493158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYXF37NMTW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.380722, - 48.022035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYEYOSNA3V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.380722, - 48.022035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYEYOSNA3V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55755, - 46.6963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWWABU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4886, - -20.8928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPMAOIPEVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.492163, - -20.893393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LG2QVY6WC6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4741, - -21.1373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engencilaos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.304, - -21.04 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenguill", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5726, - -21.204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engencafres", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.439, - -21.2976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenstpier", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.2307, - -21.0828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenlagon", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5298, - -20.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenstemari", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenstben", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.29748, - -20.9429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RR8JDRWME6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.33345, - -21.2441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VORHPZSFUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3292, - -20.9426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHOQAEUSKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46099, - -21.3341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQAKGFHXPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.380722, - 48.022035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYEYOSNA3V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27735034, - 41.60411861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DCAR0JL1LK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391367, - 49.85814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWBTJN8VI5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391367, - 49.85814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWBTJN8VI5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391367, - 49.85814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWBTJN8VI5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.492163, - -20.893393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LG2QVY6WC6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.31783, - -20.9791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JITRMIMN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.31783, - -20.9791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JITRMIMN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47581, - -21.3136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWXQ3IKEQL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.380722, - 48.022035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XYEYOSNA3V", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31052875, - 43.2043724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAMORX8BZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31052875, - 43.2043724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LAMORX8BZO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25805072, - 43.34891641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VK0TQGFDSG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25805072, - 43.34891641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VK0TQGFDSG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25805072, - 43.34891641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VK0TQGFDSG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25805072, - 43.34891641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VK0TQGFDSG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.74049362, - 48.50173471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAWXONRZ2Q", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:30,Sa 09:00-17:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.74049362, - 48.50173471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAWXONRZ2Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:30,Sa 09:00-17:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.74049362, - 48.50173471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DAWXONRZ2Q", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:30,Sa 09:00-17:30", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89343597, - 42.67262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZU2CHSGYDT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.89343597, - 42.67262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZU2CHSGYDT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sa 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.145892, - 43.685903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C3JINN4OUP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.145892, - 43.685903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C3JINN4OUP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902432, - 43.939949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIKBWHPL24330", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.29748, - -20.9429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQRCK1OHOC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.29748, - -20.9429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EQRCK1OHOC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3292, - -20.9426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCT8UV6EN8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5298, - -20.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVGUJC2YHB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3292, - -20.9426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCT8UV6EN8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5298, - -20.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVGUJC2YHB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.25128, - -21.0427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RITQEFPOJM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.25128, - -21.0427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RITQEFPOJM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58381, - 48.7077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCDGJJ", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42526885, - 49.14977589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOAFWLQLHH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80312534, - 49.13609064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351334, - 48.74368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYZYQRLMOW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80312534, - 49.13609064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468, - 48.51454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468, - 48.51454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25574, - 45.5513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRUTSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05468501, - 48.51455695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JAQ9DIPMFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351334, - 48.74368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LYZYQRLMOW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42526885, - 49.14977589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOAFWLQLHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42526885, - 49.14977589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOAFWLQLHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42526885, - 49.14977589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOAFWLQLHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.72042, - 49.0861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "valmontgare", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66963736, - 46.8228002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRTQ7PSGYO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.66963736, - 46.8228002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WRTQ7PSGYO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22000316, - 48.88582386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQOVRUFGXB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29832077, - 48.79752977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TY2KJ0CUTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33075422, - 49.37033692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHFGR3GEVG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33075422, - 49.37033692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QHFGR3GEVG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29832077, - 48.79752977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TY2KJ0CUTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90689544, - 49.22343788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQ7UX0N0KS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.355598, - 49.399806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DBUNVRBU3K", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.355598, - 49.399806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DBUNVRBU3K", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90689544, - 49.22343788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQ7UX0N0KS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22000316, - 48.88582386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GQOVRUFGXB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90689544, - 49.22343788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQ7UX0N0KS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90689544, - 49.22343788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FQ7UX0N0KS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42526885, - 49.14977589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOAFWLQLHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800880408, - 49.13648941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800880408, - 49.13648941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42526885, - 49.14977589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DOAFWLQLHH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80312534, - 49.13609064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80312534, - 49.13609064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80312534, - 49.13609064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80312534, - 49.13609064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DKIVXKZFGA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94386558, - 43.5386752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8SVAECJXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94386558, - 43.5386752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8SVAECJXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94386558, - 43.5386752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8SVAECJXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94386558, - 43.5386752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R8SVAECJXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64138, - 48.8289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "E6UKE8TVSU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25574, - 45.5513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRUTSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25574, - 45.5513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRUTSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25574, - 45.5513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BRUTSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16191, - 50.73734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3598, - 43.41407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TVIF7DKLUF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.738635, - 45.978188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.738635, - 45.978188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7394, - 45.97827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RPDMF5LYE0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8719224, - 49.48156493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8719224, - 49.48156493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8719224, - 49.48156493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8719224, - 49.48156493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16122802, - 50.73713075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KHNTCSOFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391367, - 49.85814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VWBTJN8VI5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47581, - -21.3136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWXQ3IKEQL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55755, - 46.6963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWWABU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95061, - 49.0363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOJ0SHUXRA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24298763, - 49.38597488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCG80SXBHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139562, - 49.0425801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZISHTQLCPD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139562, - 49.0425801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZISHTQLCPD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95523387, - 49.04616314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWFFJSO2PP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139562, - 49.0425801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZISHTQLCPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95523387, - 49.04616314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QWFFJSO2PP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139365, - 49.04118408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLRG4EJHTC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96149989, - 49.04477778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2O5X8CIOC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96149989, - 49.04477778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2O5X8CIOC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16664588, - 49.14831143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OURCDLLPBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139365, - 49.04118408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MLRG4EJHTC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139562, - 49.0425801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZISHTQLCPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.760692, - 42.546508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BK6QUX36OK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139562, - 49.0425801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZISHTQLCPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95139562, - 49.0425801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZISHTQLCPD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.28522576, - 44.88326108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHPCMFYE1W", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.28522576, - 44.88326108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FHPCMFYE1W", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51500284, - 48.12402757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IEBNZSOUQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.51500284, - 48.12402757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IEBNZSOUQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.701971, - 48.413216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GW64CPZFD3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.701971, - 48.413216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GW64CPZFD3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69718371, - 48.40366517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSKBVB1WJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69718371, - 48.40366517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSKBVB1WJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.696444, - 48.401405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLHRLNQFGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24298763, - 49.38597488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SCG80SXBHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.35852254, - 48.20551728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTHD3KC8DN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.35852254, - 48.20551728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UTHD3KC8DN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.146748, - 49.275899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFK6JNKO3Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1265192, - 49.27116133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XO3MVEDDXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.28102267, - 48.90789495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLID3GFDC93UL5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.28102267, - 48.90789495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLID3GFDC93UL5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.28102267, - 48.90789495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLID3GFDC93UL5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59967687, - 49.04399696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V9N0HA5IKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59967687, - 49.04399696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V9N0HA5IKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.602767944, - 49.05228424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDIXLRAADA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.602767944, - 49.05228424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDIXLRAADA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8748447, - 49.11924098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVUXSYMJAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8748447, - 49.11924098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVUXSYMJAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8748447, - 49.11924098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVUXSYMJAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8748447, - 49.11924098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QVUXSYMJAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98678458, - 50.43186345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X9PLF6UY7Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.98678458, - 50.43186345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "X9PLF6UY7Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8759267, - 48.97890724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFZEEO1KRT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8759267, - 48.97890724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XFZEEO1KRT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50518824, - 48.82134668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJGVB4DZD2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50518824, - 48.82134668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UJGVB4DZD2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3438463, - 50.84746188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIC8ALLHQN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3438463, - 50.84746188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EIC8ALLHQN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91136916, - 50.38211025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUOMXU8IF3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91136916, - 50.38211025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GUOMXU8IF3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.696444, - 48.401405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLHRLNQFGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.760692, - 42.546508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BK6QUX36OK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.146748, - 49.275899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PFK6JNKO3Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.540882, - 45.313778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HMDWQISHYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58357924, - 45.29923357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDHVUHHABK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35359, - 45.4764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VKXMXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58357924, - 45.29923357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDHVUHHABK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58357924, - 45.29923357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDHVUHHABK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58357924, - 45.29923357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDHVUHHABK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58357924, - 45.29923357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WDHVUHHABK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58031545, - 45.29836569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBLOVH1UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58031545, - 45.29836569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBLOVH1UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58031545, - 45.29836569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBLOVH1UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58031545, - 45.29836569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBLOVH1UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58031545, - 45.29836569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SEBLOVH1UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5753071, - 45.29810533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LT9ZDLYLLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5362314, - 45.33017124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XMFRVU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1963, - 45.6705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTDFPZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1963, - 45.6705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTDFPZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1296, - 48.8035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYRLXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37747327, - 44.7449334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIJWV6HQ25LEY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37747327, - 44.7449334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIJWV6HQ25LEY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13651315, - 46.53952848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIIL4KRO26MRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13651315, - 46.53952848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIIL4KRO26MRR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2669, - 45.5527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLQAADPOMW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2669, - 45.5527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLQAADPOMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1296, - 48.8035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYRLXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1296, - 48.8035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYRLXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1296, - 48.8035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WYRLXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125194, - 49.271734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIMFWKQU3A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95061, - 49.0363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WOJ0SHUXRA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1265192, - 49.27116133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XO3MVEDDXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36137953, - 48.73925281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBVPKUWE5C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92863627, - 45.69404785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VBMK6MTPKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9369716, - 45.6954636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEGY4OXRSX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978296, - 45.705913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECQW9RJZ8K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92863627, - 45.69404785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VBMK6MTPKS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92863627, - 45.69404785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VBMK6MTPKS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978296, - 45.705913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECQW9RJZ8K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92863627, - 45.69404785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VBMK6MTPKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-11:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36583159, - 48.74221383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQXVLYFBDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36860288, - 48.73833298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP0UEPI09O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36860288, - 48.73833298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MP0UEPI09O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36037, - 48.743353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G9SVXXKLU9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36037, - 48.743353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "G9SVXXKLU9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.304942, - 49.134465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNW0SO2WZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36583159, - 48.74221383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MQXVLYFBDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.36137953, - 48.73925281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LBVPKUWE5C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73211, - 47.998104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NWGYM2SZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73211, - 47.998104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NWGYM2SZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73211, - 47.998104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NWGYM2SZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73211, - 47.998104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "R7NWGYM2SZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42990019, - 48.50642774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOCMBEAY1L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42990019, - 48.50642774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IOCMBEAY1L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29426496, - 48.1671087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDNIEIV5PZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29936721, - 48.165309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGWIUU7WVJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29426496, - 48.1671087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZDNIEIV5PZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9369716, - 45.6954636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEGY4OXRSX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9369716, - 45.6954636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEGY4OXRSX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978296, - 45.705913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECQW9RJZ8K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93282668, - 45.6972252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHQSUJ0P53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15382448, - 49.14641947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GM3IKXS9DT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15382448, - 49.14641947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GM3IKXS9DT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14954363, - 49.15113951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWQCTT01WA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15049265, - 49.1514963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGJRF0YHEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16664588, - 49.14831143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OURCDLLPBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14954363, - 49.15113951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWQCTT01WA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.136504, - 49.15887026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFXXVP8UFL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15049265, - 49.1514963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UGJRF0YHEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.136504, - 49.15887026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OFXXVP8UFL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.98107938, - 43.4257894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZKPBHRQOWL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.224154, - 49.246869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UATPZ39SAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.224154, - 49.246869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UATPZ39SAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22220396, - 49.24518038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VM0SB9N68T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2242211, - 49.24604569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDQJEBUTWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125194, - 49.271734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OIMFWKQU3A", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22220396, - 49.24518038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VM0SB9N68T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93282668, - 45.6972252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHQSUJ0P53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.978296, - 45.705913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ECQW9RJZ8K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92489818, - 45.69760737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTTLB5IUZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93282668, - 45.6972252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHQSUJ0P53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93282668, - 45.6972252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XHQSUJ0P53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92489818, - 45.69760737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OTTLB5IUZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9369716, - 45.6954636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEGY4OXRSX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29936721, - 48.165309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HGWIUU7WVJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2242211, - 49.24604569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GDQJEBUTWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.304942, - 49.134465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VNW0SO2WZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90038, - 48.9435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMOD3XW3U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.914641, - 48.95391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2IOI9VPRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.905313, - 48.949848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTHFZJ44NR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90038, - 48.9435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KZMOD3XW3U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.883098, - 48.967406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDEIJGQQJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.905313, - 48.949848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FTHFZJ44NR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.883098, - 48.967406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDEIJGQQJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.914641, - 48.95391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "D2IOI9VPRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.883098, - 48.967406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDEIJGQQJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19667332, - 45.25360433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H7UOMYFMJX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19667332, - 45.25360433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H7UOMYFMJX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19667332, - 45.25360433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "H7UOMYFMJX", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.353634, - 43.49678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6TP29MAZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.353634, - 43.49678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6TP29MAZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.353634, - 43.49678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6TP29MAZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.353634, - 43.49678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C6TP29MAZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167827, - 49.253007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSTWKUXLHX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167827, - 49.253007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSTWKUXLHX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167827, - 49.253007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSTWKUXLHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167827, - 49.253007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BSTWKUXLHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43960051, - 48.19754719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTUL8DKYPE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.68968931, - 48.35605654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULRXO0HBQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.883098, - 48.967406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KDEIJGQQJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.68968931, - 48.35605654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULRXO0HBQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.68968931, - 48.35605654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULRXO0HBQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.68968931, - 48.35605654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ULRXO0HBQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87922958, - 48.37586844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMDPPQ40YA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87922958, - 48.37586844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FMDPPQ40YA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157056, - 49.102599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6QDXR7OOU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157056, - 49.102599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6QDXR7OOU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157056, - 49.102599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6QDXR7OOU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.157056, - 49.102599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "B6QDXR7OOU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43960051, - 48.19754719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YTUL8DKYPE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22774722, - 48.79670152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9941156, - 47.2429598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "393417522", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Besançon", - "ref": "64859", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9941156, - 47.2429598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "393417522", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Besançon", - "ref": "64860", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9941156, - 47.2429598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "393417522", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Besançon", - "ref": "64862", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9941156, - 47.2429598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "393417522", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Besançon", - "ref": "64861", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8811268, - 49.1763809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Forbach", - "ref": "61828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8811268, - 49.1763809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Forbach - 22kW AC ", - "ref": "61827", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8811268, - 49.1763809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Forbach", - "ref": "61826", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8811268, - 49.1763809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "403547102", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Forbach", - "ref": "61825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Reims", - "ref": "66816", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Reims", - "ref": "66815", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Reims", - "ref": "66814", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Reims", - "ref": "66813", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Reims", - "ref": "70175", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1, - 47.27 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEDIODENT", - "owner:ref:FR:SIREN": "898168273", - "email": "mediodent@gmail.com", - "phone": "03 81 60 06 00", - "network": "MEDIODENT", - "ref": "53651315-d7cb-4d91-a2ec-4ff2e8d06ae0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36, - 44.01 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "ea4af2d4-4d63-40a8-a7cd-c579b91e1a8c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0657217, - 44.1432574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "5423755b-f394-4821-8e41-fa9dcb935aaa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38, - 45.47 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Perrin", - "owner:ref:FR:SIREN": "330590449", - "email": "nellyperrin@me.com", - "phone": "0610284454", - "network": "IBIS HOTEL LA TERRAS", - "ref": "8e30cdf7-c9a7-48a3-a51b-9360b5620719", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.637703999999, - 44.7755151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "LABEL DENT", - "ref": "3a575c23-7b71-4f73-a0f8-fd73bc7bcfba", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1669286, - 44.3974258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "909177295", - "email": "a.tarridec@maborneauto.com", - "phone": "361626161", - "network": "RENAULT BISCAROSSE", - "ref": "31f4a65e-bbd2-4e46-a5cf-5714f0143e2a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3, - 44.46 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "792c0a44-6b53-48fa-aa57-1b483e111f4a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.33, - 44.4 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "37f31189-2de6-4633-8288-8acd8b78e52b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.729, - 48.642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Automobile de l'Est", - "owner:ref:FR:SIREN": "820731552", - "email": "automobiledelest1@gmail.com", - "phone": "0679252167", - "network": "Automobile de l'Est", - "ref": "f003b355-5ff8-4331-8e45-a66a57a668b0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-FR 08:00-17:00", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52, - 44.41 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0239871, - 48.3302804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "443171558", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA TROYES - Groupe Amplitude", - "ref": "90066", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:00-19:00", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0239871, - 48.3302804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "443171558", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA TROYES - Groupe Amplitude", - "ref": "90067", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:00-19:00", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1726385, - 48.4270586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "306092701", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Etampes - 22kW AC ", - "ref": "60380", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 08:00-18:00", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1726385, - 48.4270586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "306092701", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda ETAMPES - GARAGE ST PIERRE", - "ref": "57150", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 08:00-18:00", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842811, - 43.926543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "488482985", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA AVIGNON", - "ref": "96887", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-19:00", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.649456, - 48.901031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "518528708", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SU gunderschoffen - SAS SODIHARDT", - "ref": "36279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-20:00", - "start_date": "2020-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.649456, - 48.901031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "518528708", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SU gunderschoffen - SAS SODIHARDT", - "ref": "36280", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-20:00", - "start_date": "2020-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8007328050838853, - 47.813308037603726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "434085395", - "email": "jeremie.ferre@spie.com", - "phone": "0673675388", - "network": "DOMAINE GUEGUEN", - "ref": "8fd21380-370e-45b5-901a-a104b0b2deab", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 10:00-19:00, Su 10:00-13:00", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38138, - 43.337325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "801121096", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA Lons - EDEN AUTO", - "ref": "38835", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38138, - 43.337325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "801121096", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA Lons - EDEN AUTO", - "ref": "38834", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0825122, - 45.9306913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "432152593", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda ANNECY - MONT BLANC AUTOMOBILES ", - "ref": "61743", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.403729, - 43.358055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SDC CENTRE MEDICAL ARTZAMENDI", - "owner:ref:FR:SIREN": "891652950", - "email": "fcascino@agencecd6440.fr", - "phone": "0559592669", - "network": "centre médical Artzamendi", - "ref": "e75e4340-be0a-49dd-adf9-4cf098145c81", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.654645323753357, - 47.234375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BORNECO", - "owner:ref:FR:SIREN": "818984221", - "email": "freddy.borneco@gmail.com", - "phone": "0669684978", - "network": "le colisee", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2770973, - 50.916263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BORNECO", - "owner:ref:FR:SIREN": "445403512", - "email": "freddy.borneco@gmail.com", - "phone": "0669684978", - "network": "bubble tree", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.598737, - 50.4726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SC PIOLET", - "ref": "2cb71ce9-a7c2-4e98-b6ab-5491c8089f57", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8764533, - 45.6213337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "432152593", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA CHAMBERY - MONT BLANC AUTOMOBILES", - "ref": "60506", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8764533, - 45.6213337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "432152593", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA CHAMBERY - MONT BLANC AUTOMOBILES", - "ref": "60498", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.438868, - 46.349082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANTHY SUR LEMAN - DEGENEVE", - "ref": "63418", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.438868, - 46.349082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANTHY SUR LEMAN - DEGENEVE", - "ref": "63419", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391484, - 43.841971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "380655548", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES ", - "ref": "55366", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391484, - 43.841971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "380655548", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", - "ref": "55371", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391484, - 43.841971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "380655548", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", - "ref": "55370", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391484, - 43.841971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "380655548", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", - "ref": "55367", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " Mo-Fr 09:00-19:00,Sat 09:00-18:30", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.398988, - 48.944432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "538302092", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Kia Châlons - Groupe REY", - "ref": "88393", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-19:00", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.398988, - 48.944432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "538302092", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Kia Châlons - Groupe REY", - "ref": "88392", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-19:00", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9057774, - 43.660005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "879486520", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ROADY SERVICE", - "ref": "50490", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sun 08:30-20:00", - "start_date": "2020-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9057774, - 43.660005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "879486520", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ROADY SERVICE", - "ref": "50491", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sun 08:30-20:00", - "start_date": "2020-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.31, - 44.51 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "e5ed9769-55df-4ef0-9f84-62673a8b44da", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2614333, - 46.2014483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "829900414", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mercedes Benz - EMB Léman Annemasse", - "ref": "28236", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 06:30-19:00,Sat 08:00-18:00", - "start_date": "2019-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2614333, - 46.2014483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "829900414", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mercedes Benz - EMB Léman Annemasse", - "ref": "28235", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 06:30-19:00,Sat 08:00-18:00", - "start_date": "2019-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.897273, - 45.459233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "CLUB MED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13535, - 45.686943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "SA TRANSPORTS FRANCONY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079967, - 45.894798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "GALILEO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165022, - 50.606513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOULINS D'ASCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165022, - 50.606513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOULINS D'ASCQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079967, - 45.894798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "GALILEO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13535, - 45.686943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "SA TRANSPORTS FRANCONY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74223, - 45.979647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "ACTIPOLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13535, - 45.686943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "SA TRANSPORTS FRANCONY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.178151, - 45.830847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "Lac d’Annecy Camping", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079026, - 45.893398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOBILIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079026, - 45.893398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOBILIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079026, - 45.893398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOBILIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079026, - 45.893398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOBILIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079026, - 45.893398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOBILIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.178151, - 45.830847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "Lac d’Annecy Camping", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.178151, - 45.830847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "Lac d’Annecy Camping", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.178151, - 45.830847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "Lac d’Annecy Camping", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.079026, - 45.893398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "MOBILIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74223, - 45.979647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "ACTIPOLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74223, - 45.979647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "ACTIPOLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111914, - 45.881672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "SA TRANSPORTS FRANCONY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74223, - 45.979647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "ACTIPOLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74223, - 45.979647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "ACTIPOLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111914, - 45.881672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "SA TRANSPORTS FRANCONY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111914, - 45.881672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "SA TRANSPORTS FRANCONY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-14:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74223, - 45.979647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NEXTENEO", - "email": "contact@nexteneo.com", - "phone": "null", - "network": "ACTIPOLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 12:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.811676, - 48.0690269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "735550048", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", - "ref": "121730", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 09:30-19:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.811676, - 48.0690269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "735550048", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", - "ref": "71494", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:30-19:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.811676, - 48.0690269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "735550048", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", - "ref": "71514", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:30-19:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.91 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "552008914", - "email": "exploitation@freshmile.com", - "phone": "0368781435", - "network": "VINCI OPTEOR IMMOTIC", - "ref": "52756b64-e5c3-44db-930f-3d7134d97d86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21, - 48.91 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "552008914", - "email": "exploitation@freshmile.com", - "phone": "0368781435", - "network": "VINCI OPTEOR IMMOTIC", - "ref": "74547d48-2597-4024-a46c-2399260c18f4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4088906, - 49.0256943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "717280473", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda CHÂTEAU THIERRY", - "ref": "96902", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.408807, - 49.025824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "717280473", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda CHÂTEAU THIERRY", - "ref": "56571", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 08:30-18:00", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.654599599999, - 44.8662562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SAS CIGIMMO 4", - "ref": "e9df2d26-22e3-4d29-a94a-cfeee0adc8e9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82, - 49.13 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCI LES RUISSEAUX", - "owner:ref:FR:SIREN": "530787852", - "email": "marc@fiskagroup.com", - "phone": "0387885670", - "network": "SCI LES RUISSEAUX", - "ref": "7dcef345-7d8a-4753-ae4e-7b3d88d68dfb", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867657, - 45.9168004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NM SECURELEC", - "owner:ref:FR:SIREN": "348002718", - "email": "infos@nmsecurelec.com", - "phone": "+33662651578", - "network": "Le Refuge des Aiglons", - "ref": "2a58421e-08e5-4992-bcad-7e53de800fdf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867657, - 45.9168004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NM SECURELEC", - "owner:ref:FR:SIREN": "348002718", - "email": "infos@nmsecurelec.com", - "phone": "+33662651578", - "network": "Le Refuge des Aiglons", - "ref": "2a58421e-08e5-4992-bcad-7e53de800fdf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5487, - 45.31885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NM SECURELEC", - "owner:ref:FR:SIREN": "490457447", - "email": "infos@nmsecurelec.com", - "phone": "+33662651578", - "network": "Hôtel le Kaya", - "ref": " 99d6d8ef-b3bf-4c14-a84a-866bfd484178", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5487, - 45.31885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NM SECURELEC", - "owner:ref:FR:SIREN": "490457447", - "email": "infos@nmsecurelec.com", - "phone": "+33662651578", - "network": "Hôtel le Kaya", - "ref": " 99d6d8ef-b3bf-4c14-a84a-866bfd484178", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5, - 49 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bornevo", - "owner:ref:FR:SIREN": "418152302", - "email": "contact@bornevo.com", - "phone": "0184604870", - "network": "Bornevo Connect", - "ref": "E46104", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bornevo Connect", - "owner:ref:FR:SIREN": "812267318", - "email": "contact@bornevo.com", - "phone": "0184604870", - "network": "Bornevo Connect", - "ref": "EVC 11750373", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bornevo Connect", - "owner:ref:FR:SIREN": "812267318", - "email": "contact@bornevo.com", - "phone": "0184604870", - "network": "CBRE TOUR FIRST", - "ref": "BOR-ECOE37374-E37375", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bornevo Connect", - "email": "contact@bornevo.com", - "phone": "0184604870", - "network": "CBRE TOUR FIRST", - "ref": "EVC 11736622 E61083", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bornevo Connect", - "owner:ref:FR:SIREN": "812267318", - "email": "contact@bornevo.com", - "phone": "0184604870", - "network": "Bornevo Connect", - "ref": "EVC 11749592", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bornevo Connect", - "owner:ref:FR:SIREN": "812267318", - "email": "contact@bornevo.com", - "phone": "0184604870", - "network": "Bornevo Connect", - "ref": "EVC 11750472", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2868817, - 45.6190876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "487080210", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM CHALLANS DISTRIBUTION", - "ref": "128389", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2868817, - 45.6190876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "487080210", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM CHALLANS DISTRIBUTION", - "ref": "128390", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.605048, - 49.644253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVERON", - "owner:ref:FR:SIREN": "790127815", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "EVBOX", - "ref": "EVB-P1924294", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.729, - 48.642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Polybati", - "owner:ref:FR:SIREN": "812535870", - "email": "contact@polybati.fr", - "phone": "0679252167", - "network": "Polybati", - "ref": "f003b355-5ff8-4331-8e45-a66a57a668b0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-FR 08:00-17:00", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.347742, - 49.214436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "538798570", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA - Hérouville-Saint-Clair", - "ref": "37831", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:30,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.347742, - 49.214436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "538798570", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA - Hérouville-Saint-Clair", - "ref": "37830", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:30,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.716682, - 45.975531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "434734455", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION MICHEL AULAS", - "ref": "FRECN0162", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.716682, - 45.975531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "434734455", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION MICHEL AULAS", - "ref": "FRECN0161", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.716682, - 45.975531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "434734455", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION MICHEL AULAS", - "ref": "FRECN0160", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.716682, - 45.975531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "434734455", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION MICHEL AULAS", - "ref": "FRECN0163", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6073542, - 45.5257463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "531669737", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Bricomarché Rive de Gier", - "ref": "77754", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6073542, - 45.5257463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "531669737", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Bricomarché Rive de Gier ", - "ref": "77752", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0316692, - 50.6421108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "831156278", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda Lille - Kodo Automobiles", - "ref": "57006", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": " Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-17:45", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0316692, - 50.6421108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "831156278", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda Lille - Kodo Automobiles", - "ref": "56657", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": " Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-17:45", - "start_date": "2021-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.676037, - 48.991536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "379198443", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda Buchelay - Technic Auto Services", - "ref": "96190", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": " Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", - "start_date": "2022-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.155058, - 48.995907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "351440078", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA Evreux GHV", - "ref": "109624", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 08:30-19:00", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.462146, - 48.204388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "833702582", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA EPINAL", - "ref": "49587", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.462146, - 48.204388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "833702582", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA EPINAL", - "ref": "49607", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5, - 46.3 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE ", - "owner:ref:FR:SIREN": "849533070", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "Infrastructures de recharge pour véhicules électriques AUTORECHARGE", - "ref": "5720d842-fcf2-4e6f-897d-bf0d2b6bfa10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1521191, - 50.7065043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "ORSINI CONSEIL", - "ref": "a191b56a-3e02-4cd5-86f9-5349a8cc4095", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56065, - 48.73133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WICKER TP", - "owner:ref:FR:SIREN": "678500950", - "email": "contact@wickertp.fr", - "phone": "0388915128", - "network": "WICKER TP", - "ref": "44ffcdec-3eaf-4358-8baf-7da4631d3f24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.56065, - 48.73133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WICKER TP", - "owner:ref:FR:SIREN": "678500950", - "email": "contact@wickertp.fr", - "phone": "0388915128", - "network": "WICKER TP", - "ref": "44ffcdec-3eaf-4358-8baf-7da4631d3f24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58, - 42.37 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "a9e431e7-189c-44c7-b111-55db8d10d18f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1299419, - 47.3207567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "808872097", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché CONTACT Marchaux et Drive - Semmax", - "ref": "87473", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1299419, - 47.3207567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "808872097", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché CONTACT Marchaux et Drive - Semmax", - "ref": "87472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1299419, - 47.3207567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "808872097", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché CONTACT Marchaux et Drive - Semmax", - "ref": "47126", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1299419, - 47.3207567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "808872097", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché CONTACT Marchaux et Drive - Semmax", - "ref": "47104", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074071, - 44.616646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "318226974", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SA BEYNEL ET FILS ", - "ref": "49419", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074071, - 44.616646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "318226974", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SA BEYNEL ET FILS", - "ref": "26491", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2019-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074071, - 44.616646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "318226974", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SA BEYNEL ET FILS", - "ref": "26492", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2019-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.074071, - 44.616646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "318226974", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SA BEYNEL ET FILS ", - "ref": "49420", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.41, - 16.01 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "428801658", - "email": "odile.coumau@ezdrive.fr", - "network": "Bananes Vertes St Claude", - "ref": "FREZDE28287", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.72048039949465, - 15.999101989340252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "819761883", - "email": "odile.coumau@ezdrive.fr", - "network": "Mc Donald's Basse Terre", - "ref": "FREZDE63396", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1446482, - 45.7582871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WeeCharge", - "owner:ref:FR:SIREN": "902305556", - "email": "hello@weecharge.fr", - "phone": "0972649769", - "network": "WeeCharge", - "ref": "38b1f8f6-095f-4e98-a187-e1ca8abf2989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8066202, - 46.1815093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WeeCharge", - "owner:ref:FR:SIREN": "902305556", - "email": "hello@weecharge.fr", - "phone": "0972649769", - "network": "WeeCharge", - "ref": "d3c00913-8774-4df3-8c07-97b5c596db39", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1724724, - 47.4218283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.49542672, - 47.3148725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4200054, - 43.7535892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.171659, - 47.421321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969035, - 42.9494317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395574, - 43.441127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12712458, - 47.32890163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.508871, - 47.309592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86041194, - 48.26813266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601411, - 48.601857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125201, - 47.327026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.549728, - 43.48261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29451923, - 46.20556621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.490309, - 45.189955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795777, - 43.54637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "917546251", - "email": "assistance-commerciale@e-vadea.fr", - "phone": "0 970 830 387", - "network": "e-Vadea", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.89, - 43.96 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "02e88fc3-43b3-4289-b171-135781bfab8c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05, - 44.05 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "de791cd2-c920-4121-aebe-5a54a3e5695f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.476711409891, - 43.476583984941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "803719277", - "email": "oscar@electromaps.com", - "phone": "34 931.574.967", - "network": "1PACTE", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.407609123225763, - 43.41959147913006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "379629447", - "email": "oscar@electromaps.com", - "phone": "34 931.574.967", - "network": "Hotel saint alban", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.657888301758055, - 41.908579309038004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "812328128", - "email": "oscar@electromaps.com", - "phone": "34 931.574.967", - "network": "Résidence les calanques", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.493569567590577, - 48.832677935169805 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27, - 46.2 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "725620751", - "email": "support@electromaps.com", - "phone": "0034931574967", - "network": "Aubade - Comptoir des Fers", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-FR 07:30-12:00, Mo-Fr 13:30-17:30, Sa 08:00-12:00", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27, - 46.2 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "725620751", - "email": "support@electromaps.com", - "phone": "0034931574967", - "network": "Aubade - Comptoir des Fers", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-18:00", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4883644, - 45.147515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "349214825", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "PAROT AUTOMOTIVE - MAZDA BRIVE ", - "ref": "50719", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.860127, - 46.768978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "391060480", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA CHALON S.SAONE - GROUPE GUILLET", - "ref": "50711", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1391855, - 48.534072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "424095370", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Villa Primerose", - "ref": "89771", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-22:00,Sun 08:00-21:00", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1391855, - 48.534072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "424095370", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Villa Primerose", - "ref": "89772", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-22:00,Sun 08:00-21:00", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99, - 44.08 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "423e4356-77bc-4fc0-8b43-2d102d6b6093", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.323404, - 49.17014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "448310771", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA CAEN", - "ref": "128615", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.323404, - 49.17014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "448310771", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA CAEN", - "ref": "128616", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4191715, - 43.2791824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "309004331", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTO SPRINTER - MARSEILLE", - "ref": "56428", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4191715, - 43.2791824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "309004331", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "AUTO SPRINTER - MARSEILLE", - "ref": "56427", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59939, - 43.336796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "534056148", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MELLONE CONSTRUCTION", - "ref": "129868", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59939, - 43.336796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "534056148", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MELLONE CONSTRUCTION", - "ref": "129846", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59939, - 43.336796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "534056148", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MELLONE CONSTRUCTION", - "ref": "71708", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59939, - 43.336796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "534056148", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MELLONE CONSTRUCTION", - "ref": "71707", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6089027, - 48.5699316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "257702613", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Syndicat intercommunal de Cesson et Vert-Saint-Denis", - "ref": "129732", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1472556, - 44.6109419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "751468612", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - La Teste de Buche", - "ref": "61148", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1472556, - 44.6109419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "751468612", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - La Teste de Buche", - "ref": "61147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.210311, - 46.189385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "339741381", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - BOURG EN BRESSE", - "ref": "50670", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 09:00-18:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.210311, - 46.189385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "339741381", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - BOURG EN BRESSE", - "ref": "50704", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 09:00-18:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8959, - 48.9294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "330117821", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "BMW", - "ref": "FRFR1EATXX1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0880539, - 43.6023265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "827876251", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANTIBES- NOVELLIPSE", - "ref": "62871", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00,Sun 10:00-19:00", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0880539, - 43.6023265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "827876251", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANTIBES- NOVELLIPSE", - "ref": "62872", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00,Sun 10:00-19:00", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0880539, - 43.6023265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "827876251", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANTIBES- NOVELLIPSE", - "ref": "60013", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00,Sun 10:00-19:00", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0880539, - 43.6023265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "827876251", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANTIBES- NOVELLIPSE", - "ref": "60012", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00,Sun 10:00-19:00", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14, - 45 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "edc67b91-db41-4aa1-bfa4-e3c2a885e0c1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.8293749, - 48.5750142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "444910418", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché MORLAIX - COMADU", - "ref": "47222", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.43, - 48.37 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "2ed6b0ff-8e77-4c05-8b8b-5ba0d80e5677", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-22:00", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.201547, - 43.6885902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "827876251", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA NICE - NOVELLIPSE", - "ref": "55361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.201547, - 43.6885902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "827876251", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA NICE - NOVELLIPSE", - "ref": "54738", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", - "start_date": "2021-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86859, - 45.91998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NM SECURELEC", - "owner:ref:FR:SIREN": "348002718", - "email": "infos@nmsecurelec.com", - "phone": "+33662651578", - "network": "Le Morgane", - "ref": "0e5065cc-8847-4dfe-94dc-dc4aca52d2f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86859, - 45.91998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NM SECURELEC", - "owner:ref:FR:SIREN": "348002718", - "email": "infos@nmsecurelec.com", - "phone": "+33662651578", - "network": "Le Morgane", - "ref": "0e5065cc-8847-4dfe-94dc-dc4aca52d2f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3319719, - 43.9905133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "303217368", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ESPACE TOY MONTAUBAN", - "ref": "61047", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–18:30,Sat 09:00-18:00", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3319719, - 43.9905133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "303217368", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ESPACE TOY MONTAUBAN", - "ref": "61057", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–18:30,Sat 09:00-18:00", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3319719, - 43.9905133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "303217368", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ESPACE TOY MONTAUBAN", - "ref": "61056", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–18:30,Sat 09:00-18:00", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3319719, - 43.9905133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "303217368", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ESPACE TOY MONTAUBAN", - "ref": "61046", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–18:30,Sat 09:00-18:00", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147915, - 43.123458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "397554791", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE HYERES - SADIP", - "ref": "95344", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.147915, - 43.123458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "397554791", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE HYERES - SADIP", - "ref": "95349", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0497765, - 43.573139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "424472298", - "email": "contacte@zeborne.com", - "phone": "0764573775", - "network": "Inter marché VALLAURIS", - "ref": "19518", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.759704, - 49.780879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "330489261", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE GAUVILLE - BAUMAT", - "ref": "78037", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.759704, - 49.780879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "330489261", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE GAUVILLE - BAUMAT", - "ref": "78036", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.519401, - 43.28532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "f1be318f-a242-42a9-ad6e-73d6cd386179", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86, - 46.22 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "3c260145-276e-492d-82fd-bed3fda057ba", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3800762, - 47.7717847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "402343842", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda MULHOUSE - LIGNE BLEUE AUTOMOBILES", - "ref": "49701", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Tu-Fr 08:00–12:00,Tu-Fr 14:00–19:00,Sat 09:00-17:00", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.526, - 48.8227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "348714403", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "BMW", - "ref": "FRFR1EDWYQ1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21, - 45.84 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "4166dccb-868f-48a1-b068-a79728964816", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6709003, - 45.5432207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "411793177", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", - "ref": "76647", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6709003, - 45.5432207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "411793177", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", - "ref": "76648", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.24, - 44.48 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "6bff49ea-eb46-4ce7-82be-c6aa678247da", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2592028, - 46.1746523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "435088919", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA MONTAGNAT - DJB BOURG", - "ref": "57334", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2592028, - 46.1746523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "435088919", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA MONTAGNAT - DJB BOURG", - "ref": "57335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2592028, - 46.1746523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "435088919", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA MONTAGNAT - DJB BOURG", - "ref": "57333", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2592028, - 46.1746523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "435088919", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA MONTAGNAT - DJB BOURG", - "ref": "57332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7461104, - 45.17941688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "338385685", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", - "ref": "131517", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7461104, - 45.17941688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "338385685", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", - "ref": "131516", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": " Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7461104, - 45.17941688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "338385685", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA PERIGUEUX - MAGOT CAVARD ", - "ref": "131524", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7461104, - 45.17941688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "338385685", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", - "ref": "131525", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2022-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.065799, - 47.354481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "307016121", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GARAGE NELLO CHELLI - DIJON", - "ref": "55087", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-19:00", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.065799, - 47.354481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "307016121", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GARAGE NELLO CHELLI - DIJON", - "ref": "55086", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-19:00", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86082418, - 47.0236522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "307016121", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GARAGE NELLO CHELI - BEAUNE", - "ref": "61319", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-18:00", - "start_date": "2021-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86082418, - 47.0236522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "307016121", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GARAGE NELLO CHELI - BEAUNE", - "ref": "61318", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-18:00", - "start_date": "2021-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2174783, - 46.1858677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANNEMASSE - DEGENEVE", - "ref": "63446", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2174783, - 46.1858677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANNEMASSE - DEGENEVE", - "ref": "60301", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2174783, - 46.1858677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANNEMASSE - DEGENEVE", - "ref": "57830", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2174783, - 46.1858677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANNEMASSE - DEGENEVE", - "ref": "60302", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2174783, - 46.1858677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "796680668", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA ANNEMASSE - DEGENEVE", - "ref": "57831", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1393838, - 49.2819168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "429354541", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "CAMPING LA POMMERAIE", - "ref": "57510", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1393838, - 49.2819168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "429354541", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "CAMPING LA POMMERAIE", - "ref": "57509", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0901155, - 43.822462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "378536593", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM RIEZ - DALILAS", - "ref": "77768", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:00-19:00,Sat 08:30-19:00", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0901155, - 43.822462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "378536593", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM RIEZ - DALILAS", - "ref": "77767", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:00-19:00,Sat 08:30-19:00", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16, - 46.14 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "775753148", - "email": "support.eu@chargepoint.com", - "phone": "01 85 65 04 49", - "network": "ChargePoint Network", - "ref": "FRCPIE6600025", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.029971, - 45.210931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "480819705", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE - RETOURNAC", - "ref": "70163", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.029971, - 45.210931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "480819705", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE - RETOURNAC", - "ref": "70164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sa 08:30-19:30", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012564, - 43.576079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "315044321", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LE CANNET - STAR AUTO", - "ref": "53268", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012564, - 43.576079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "315044321", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LE CANNET - STAR AUTO", - "ref": "66598", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012564, - 43.576079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "315044321", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA LE CANNET - STAR AUTO", - "ref": "66599", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5263958, - 43.4252619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "813846359", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "IPARRA", - "ref": "127538", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5922295, - 49.0396456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "401802087", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché Freneuse - CASTEL", - "ref": "59778", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5922295, - 49.0396456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "401802087", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché Freneuse - CASTEL", - "ref": "59777", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.417247, - 46.644182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "328582713", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MGMI", - "ref": "128521", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-17:00", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1756309, - 50.6884145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SEPTENTRION FINANCES", - "ref": "792b3fe0-4923-4dea-863e-99e9ee01aaa4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6746938, - 44.838434799999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM BORDEAUX", - "ref": "3dd0bb09-bcbb-4fb0-a189-a95be7c3a01e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.729, - 48.642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Zen Construction", - "owner:ref:FR:SIREN": "795006733", - "email": "zen.construction39@orange.fr", - "phone": "0388504888", - "network": "Zen Cosntruction", - "ref": "f003b355-5ff8-4331-8e45-a66a57a668b0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-FR 08:00-17:00", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12, - 43.87 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "51461466-c696-4bed-b274-0fa399784d92", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37, - 43.82 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "M.A.J.U.", - "owner:ref:FR:SIREN": "802608372", - "email": "bureau@jerome-nutile.com", - "phone": "0466406565", - "network": "Restaurant Jérôme Nutile", - "ref": "8aec152b-584e-4139-87e6-f1994652ab40", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Th-Mo 12:00-23:30", - "start_date": "2022-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4182742, - 43.8834392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "CAMPING MAS FLEURI", - "ref": "d72e5b17-a2e4-4a6c-bdbe-2840378c2131", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0737222, - 43.7274444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "324104935", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Saint-Paul les Dax", - "ref": "118370", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-20:00", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0737222, - 43.7274444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "324104935", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Saint-Paul les Dax", - "ref": "118367", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-20:00", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0737222, - 43.7274444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "324104935", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Saint-Paul les Dax", - "ref": "71607", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-20:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0737222, - 43.7274444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "324104935", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Saint-Paul les Dax", - "ref": "71572", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-20:00", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.157229, - 50.716487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ramsay Pole Lille métropole", - "owner:ref:FR:SIREN": "419992706", - "email": "contact@ramsaygds.fr", - "phone": "0359758758", - "network": "Clinique de la victoire", - "ref": "SDFRRAMSAYVIC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-20:00,Sa 09:00-18:00,Su 10:30-17:30", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.263081045755, - 45.633753981745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Indigo Propreté", - "owner:ref:FR:SIREN": "382547677", - "email": "contact@indigo-proprete.fr", - "network": "INDIGO PROPRETE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.91, - 43.9 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "42aad73a-f081-48e8-a262-1d57eee1da24", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6180124, - 50.2224538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "CAMPING DE LA FERME DE MAYOCQ", - "ref": "caebd814-5cd7-4b55-a36e-c51fd5517e5f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95, - 43.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Provibat", - "owner:ref:FR:SIREN": "339106783", - "email": "p.calcei@gmail.com", - "phone": "0618922599", - "network": "Provibat", - "ref": "77d4547d-1848-4fbe-8882-04fdbaac3f6b", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8501, - 44.97406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "349429472", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE ALTILLAC", - "ref": "126136", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:30-19:00, Sun 09:00-12:30", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8501, - 44.97406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "349429472", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "INTERMARCHE ALTILLAC ", - "ref": "81447", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:00, Sun 09:00-12:30", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3372150061411605, - 49.22868351448894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVERON", - "owner:ref:FR:SIREN": "848595880", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "EVBOX", - "ref": "EVB-P1941007", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0622478, - 46.3266042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "393617964", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda GEX - GARAGE DAGO", - "ref": "50643", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-17:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0622478, - 46.3266042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "393617964", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda GEX - GARAGE DAGO", - "ref": "50651", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-17:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4612672413424779, - 49.33620273281156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVERON", - "owner:ref:FR:SIREN": "440967651", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "EVBOX", - "ref": "EVB-P2003727", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 10:00-17:00", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.494583, - 49.105377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "M. Yannick PIERRE", - "owner:ref:FR:SIREN": "903227221", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "EVERON ", - "ref": "EVB-P2011337", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4612672413424779, - 49.33620273281156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVERON", - "owner:ref:FR:SIREN": "440967651", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "CENTRE JUNO BEACH", - "ref": "EVB-P2003727", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 10:00-17:00", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1357063, - 47.2277788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "057202046", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Ford - Saumur", - "ref": "31929", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:00", - "start_date": "2020-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.841263, - 50.689838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "502097868", - "email": "sales@electromaps.com", - "phone": "034931574967", - "network": "Le COTONNIER NIEPPE", - "ref": "da1f45f8-082b-11ed-861d-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Tu-Sa 10:00-12:30,Tu-Sa 14:00-18:30", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2026184999999, - 50.1754619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DESENFANS CAMBRAI", - "ref": "a2a817ee-668f-47bd-9b69-1e0a894ae406", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.325962, - 46.1798642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "390599611", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", - "ref": "129087", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.325962, - 46.1798642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "390599611", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", - "ref": "129086", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.797441, - 45.776709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "968504480", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ELITE MOTORS - MAZDA LYON NORD", - "ref": "50776", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0793613022707724, - 49.04113387118815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SDC ORDINAL", - "owner:ref:FR:SIREN": "038893756", - "email": "contact@secal-electricite.fr", - "phone": "0134201124", - "network": "SDC ORDINAL", - "ref": "P2003640", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.031726083467107, - 49.051990901751864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "377956636", - "email": "contact@secal-electricite.fr", - "phone": "0134201124", - "network": "SDC CONSTELLATION", - "ref": "EVB-P1950844", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00,MO-FR 14:00-18:00", - "start_date": "2022-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.923877087310788, - 49.08592862729444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "833914799", - "email": "contact@secal-electricite.fr", - "phone": "0134201124", - "network": "Campus Vigny", - "ref": "EVB-P2011264", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4969902, - 49.0483698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "489800680", - "email": "Contact@secal-electricite.fr", - "phone": "0134201124", - "network": "DEGRES CELCIUS", - "ref": "EVB-P2020196", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8208158, - 45.7100001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "835032848", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GL AUTOMOTIVE", - "ref": "89152", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fri: 07:30-19:00", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871622, - 45.719162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "968504480", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda Lyon Sud", - "ref": "49605", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1891329694156174, - 47.407691498712914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE ", - "owner:ref:FR:SIREN": "897638383", - "email": "contact@autorecharge.Fr", - "phone": "0970755400", - "network": "Réseau de charge AUTORECHARGE", - "ref": "039ba96d-7e11-4dd7-be8c-5a57279ba65f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.11003453009083, - 46.81020598702974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE", - "owner:ref:FR:SIREN": "388179236", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "Réseau de charge Camping Les Places Dorées", - "ref": "d4d72f69-26a7-4db7-8429-7cdc0f59ae93", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.82, - 47.88 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TISSERANT", - "owner:ref:FR:SIREN": "843336207", - "email": "WILFRIED@HOVE.FR", - "phone": "0673679201", - "network": "TISSERANT", - "ref": "3ab41450-fa76-4583-842f-4841b4ef42d8", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5, - 47.93 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "jmd", - "owner:ref:FR:SIREN": "803191147", - "email": "ggepetitjeanjmd@orange.fr", - "phone": "0329665414", - "network": "JMD", - "ref": "b6ce4915-9f15-4241-9c97-08f3468dae4c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49, - 47.93 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "box", - "owner:ref:FR:SIREN": "512803495", - "email": "romain.box@notaires.fr", - "phone": "0329306633", - "network": "BOX", - "ref": "414fdb34-8e7a-4add-b930-3f3c3ba8364c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47419, - 48.427342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "780096376", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "CENTRAL AUTO - MAZDA BREST", - "ref": "49544", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.47419, - 48.427342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "780096376", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "CENTRAL AUTO - MAZDA BREST", - "ref": "49575", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.243401, - 45.591954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "477827653", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "A.V.D. - MAZDA BOURGOIN JALLIEU", - "ref": "49847", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.070389, - 47.65296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.879812, - 48.067092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.879812, - 48.067092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.358157, - 47.580334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.358157, - 47.580334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.219651, - 47.713374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.219651, - 47.713374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.470933, - 47.482122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.470933, - 47.482122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.689778, - 47.778166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.457083, - 47.592389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.689778, - 47.778166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.804416, - 47.697468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.804416, - 47.697468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.376077, - 47.758092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.376077, - 47.758092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.684955, - 47.98792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.684955, - 47.98792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.457083, - 47.592389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.763716, - 47.716287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.482977, - 47.555619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.482977, - 47.555619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.110099, - 47.979188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.110099, - 47.979188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.462695, - 48.139513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.462695, - 48.139513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.235664, - 47.735956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.235664, - 47.735956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.070389, - 47.65296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.433201, - 47.994416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.763716, - 47.716287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.52498182745563, - 48.0526854834355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.52498182745563, - 48.0526854834355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.681072, - 47.742514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.681072, - 47.742514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.819318, - 47.91868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.819318, - 47.91868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.833536, - 47.855722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.833536, - 47.855722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.433201, - 47.994416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0778143, - 47.57026302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.426771, - 47.736924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.886022, - 47.861432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95916, - 47.673607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95916, - 47.673607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.009248, - 47.777566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.009248, - 47.777566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.399863, - 47.833423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.399863, - 47.833423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95376, - 48.054001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.95376, - 48.054001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.9684577690378, - 48.0700414667807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.9684577690378, - 48.0700414667807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.966614, - 48.064974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.966614, - 48.064974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.965144, - 48.071378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.965144, - 48.071378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.357774, - 47.707941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.357774, - 47.707941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.410638, - 48.060595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.410638, - 48.060595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.449763, - 47.681789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.449763, - 47.681789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.452043, - 47.660195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.452043, - 47.660195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.41565, - 47.790313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.41565, - 47.790313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.121657, - 47.481743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.121657, - 47.481743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.10414118509687, - 47.4874178836587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.10414118509687, - 47.4874178836587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.135324, - 47.906071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.886022, - 47.861432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.972268, - 47.957695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4989, - 47.7342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.972268, - 47.957695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.4989, - 47.7342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.432524, - 47.702308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.432524, - 47.702308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.427366, - 47.734611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.427366, - 47.734611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.45439663305045, - 47.7033830419759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.45439663305045, - 47.7033830419759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79624, - 47.660678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.79624, - 47.660678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.869326, - 47.655716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.869326, - 47.655716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38847, - 47.920399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38847, - 47.920399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38561913884387, - 47.9266217574649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38561913884387, - 47.9266217574649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.336528, - 47.917212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.336528, - 47.917212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.915687, - 47.653088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.915687, - 47.653088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112396, - 47.599028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112396, - 47.599028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.251559, - 47.696366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.251559, - 47.696366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.389359, - 48.145256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.389359, - 48.145256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.641815, - 47.838044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.641815, - 47.838044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.065024, - 47.981275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.065024, - 47.981275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.426771, - 47.736924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.282737, - 48.082356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.713993, - 47.961865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.384561, - 47.70391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.382645, - 47.706029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.382645, - 47.706029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.385595, - 47.706284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.385595, - 47.706284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.499354, - 48.032159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.499354, - 48.032159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.48967, - 48.030602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.48967, - 48.030602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15478, - 47.3464444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15478, - 47.3464444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.154, - 47.3446389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15679787965018, - 47.3472517670383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.188811, - 48.070927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15679787965018, - 47.3472517670383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15921, - 47.349146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15921, - 47.349146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1861944, - 47.36075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1861944, - 47.36075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.648074, - 47.525771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.648074, - 47.525771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.212803, - 47.739021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.212803, - 47.739021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.271274, - 48.036786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.271274, - 48.036786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.353597, - 47.636525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.353597, - 47.636525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.526434, - 47.862029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.384561, - 47.70391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.261518, - 47.889343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.261518, - 47.889343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.159671, - 47.834239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.546018, - 47.954125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.546018, - 47.954125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54946112322054, - 47.9537301035597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2000-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54946112322054, - 47.9537301035597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2000-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.318491, - 48.007954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.318491, - 48.007954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.240835, - 47.764089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.240835, - 47.764089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.134335, - 47.76628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.134335, - 47.76628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29707, - 47.517403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29707, - 47.517403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.545212, - 48.097286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.545212, - 48.097286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.029185, - 47.589297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.029185, - 47.589297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54198, - 47.688679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.54198, - 47.688679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.076174, - 47.748351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.076174, - 47.748351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.120444, - 47.761657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.120444, - 47.761657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.349639, - 47.763304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.349639, - 47.763304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.341074, - 47.774319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.341074, - 47.774319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.491434, - 48.103788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.491434, - 48.103788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.159671, - 47.834239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.526434, - 47.862029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.188811, - 48.070927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.282737, - 48.082356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.393552, - 47.739971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.360043, - 47.749039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.360043, - 47.749039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.356266, - 47.746452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-21:00", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.356266, - 47.746452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-21:00", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.356266, - 47.746452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-21:00", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.356266, - 47.746452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 07:00-21:00", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.385916, - 47.761289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.385916, - 47.761289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.387461, - 47.742671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.387461, - 47.742671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.368187, - 47.746835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.368187, - 47.746835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37854, - 47.762901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37854, - 47.762901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.393552, - 47.739971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0849722, - 47.2945556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.382552, - 47.736239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.382552, - 47.736239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.401963, - 47.766652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.401963, - 47.766652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.373377, - 47.731763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.373377, - 47.731763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29572, - 47.676634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29572, - 47.676634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38363, - 47.810723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.38363, - 47.810723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.384419, - 47.809912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.384419, - 47.809912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.305132, - 47.529508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.305132, - 47.529508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.361121, - 47.74982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.361121, - 47.74982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36632778285274, - 47.7542447078472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36632778285274, - 47.7542447078472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0849722, - 47.2945556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.787496, - 47.756393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.787496, - 47.756393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.943775, - 47.568076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.943775, - 47.568076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.837508, - 47.888933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.837508, - 47.888933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.829046, - 47.881531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.829046, - 47.881531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34326909091439, - 47.7237299482431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34326909091439, - 47.7237299482431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.104075, - 47.710186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.104075, - 47.710186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76628, - 47.758191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76628, - 47.758191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.365966, - 47.735396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.365966, - 47.735396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.359602, - 47.730545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.359602, - 47.730545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.364871, - 47.751861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.364871, - 47.751861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36581, - 47.748922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36581, - 47.748922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.362195, - 47.753665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.362195, - 47.753665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37788, - 47.75316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.37788, - 47.75316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36687356916206, - 47.7541104118167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.36687356916206, - 47.7541104118167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.135324, - 47.906071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.737215, - 47.690303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.713993, - 47.961865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.600977, - 48.141016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.442704, - 47.803108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.442704, - 47.803108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.344105, - 47.48098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.344105, - 47.48098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.8311430135182, - 47.9891560944795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2000-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.8311430135182, - 47.9891560944795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2000-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20436, - 47.657677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20436, - 47.657677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.156938, - 47.641144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.156938, - 47.641144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.590841, - 47.7337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.590841, - 47.7337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5899562431288, - 47.7311983193366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.5899562431288, - 47.7311983193366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.581612, - 47.517901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.581612, - 47.517901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00082862377166, - 47.6173830049512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10467, - 47.74654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10467, - 47.74654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.812224, - 47.817567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.812224, - 47.817567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.336729, - 47.887598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.336729, - 47.887598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.341557, - 47.810829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.341557, - 47.810829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.600977, - 48.141016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.842664, - 47.758084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.852219, - 47.601017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.842664, - 47.758084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.276149, - 47.804724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.6447748899666, - 48.048179763944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.6447748899666, - 48.048179763944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.403894, - 48.043441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.310304, - 47.712149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.526174, - 47.772376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.526174, - 47.772376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.493116, - 47.792624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.493116, - 47.792624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.092245, - 48.028073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.092245, - 48.028073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.127943, - 47.930239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.127943, - 47.930239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.123399, - 47.905937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.123399, - 47.905937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.976864, - 47.908288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.976864, - 47.908288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.207056, - 48.066944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.207056, - 48.066944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.641356, - 47.891521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.641356, - 47.891521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.563301, - 47.93859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.563301, - 47.93859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.448803, - 47.641507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.448803, - 47.641507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07873, - 47.5846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07873, - 47.5846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0778143, - 47.57026302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.133332, - 47.817804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.86303026029825, - 47.6014170979096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91851626989541, - 47.618330149684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91851626989541, - 47.618330149684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.989563, - 47.666459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.989563, - 47.666459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.008414, - 47.670334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.008414, - 47.670334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.98203, - 47.668615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.98203, - 47.668615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.281177, - 47.919083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.281177, - 47.919083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.894551, - 47.542052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.894551, - 47.542052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.891044, - 47.549741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.891044, - 47.549741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.379785, - 47.50075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.379785, - 47.50075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40121, - 47.534599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40121, - 47.534599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83016002077974, - 47.61487027016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.83016002077974, - 47.61487027016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82373725796509, - 47.6269066197669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82373725796509, - 47.6269066197669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.163514, - 47.637975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.163514, - 47.637975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.86303026029825, - 47.6014170979096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.018244, - 47.874823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.018244, - 47.874823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.686605, - 48.061611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.133332, - 47.817804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.000257, - 47.848171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.000257, - 47.848171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.397549, - 47.480774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.397549, - 47.480774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.322814, - 47.875616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.322814, - 47.875616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.285431, - 47.630798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.285431, - 47.630798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.173147, - 47.964535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.173147, - 47.964535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.686605, - 48.061611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01283, - 47.896999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.999055, - 47.720345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.999055, - 47.720345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.948935, - 47.638886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.948935, - 47.638886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.771008, - 47.880847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.771008, - 47.880847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.393807, - 47.995538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.393807, - 47.995538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.167758, - 47.67557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.167758, - 47.67557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01283, - 47.896999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.276149, - 47.804724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.403894, - 48.043441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.852219, - 47.601017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.721365, - 47.54681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.47243, - 48.014049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.418437, - 47.803188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.418437, - 47.803188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.650631, - 47.703143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.650631, - 47.703143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.106252, - 47.667242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.106252, - 47.667242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.000351, - 47.586732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.000351, - 47.586732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.131924, - 47.520606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.131924, - 47.520606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34054, - 48.09947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.34054, - 48.09947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.950392, - 47.703906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.950392, - 47.703906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1275, - 48.1642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1275, - 48.1642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76105177805124, - 47.5275250709627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2000-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76105177805124, - 47.5275250709627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2000-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76127088823087, - 47.5274203638255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76127088823087, - 47.5274203638255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84862890173862, - 47.5921152831321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.769914, - 47.525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.776055, - 47.522153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.776055, - 47.522153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.47243, - 48.014049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.723187, - 47.844376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.723187, - 47.844376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.248809, - 47.827935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.310304, - 47.712149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.101493, - 47.631023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.101493, - 47.631023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.752332, - 48.068001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.752332, - 48.068001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.717093, - 48.126648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.717093, - 48.126648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.282708, - 47.819758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.282708, - 47.819758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.723772, - 47.911114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.723772, - 47.911114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.737215, - 47.690303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.279209, - 47.725984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.04573, - 47.92571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.04573, - 47.92571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.153323, - 47.544915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.153323, - 47.544915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.890817, - 48.107927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.890817, - 48.107927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.833298, - 47.50187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.833298, - 47.50187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82046, - 48.12327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.82046, - 48.12327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.279209, - 47.725984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.721365, - 47.54681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.769914, - 47.525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2206389, - 47.3759444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.759406, - 47.656324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.753999, - 47.658649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.753999, - 47.658649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7308, - 47.6654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7308, - 47.6654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2206389, - 47.3759444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.788496, - 47.670475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76399, - 47.63785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76399, - 47.63785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.804662, - 47.657587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.804662, - 47.657587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754891, - 47.642143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.754891, - 47.642143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.768083, - 47.670911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.768083, - 47.670911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.755181, - 47.650702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.755181, - 47.650702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.772154, - 47.658028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.772154, - 47.658028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.788282, - 47.651531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.788282, - 47.651531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.28161, - 47.977818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.28161, - 47.977818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84862890173862, - 47.5921152831321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84862890173862, - 47.5921152831321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.84862890173862, - 47.5921152831321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.759406, - 47.656324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.788496, - 47.670475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.763805, - 47.65884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.649047, - 47.629187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2229723, - 47.3683056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2229723, - 47.3683056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.736666, - 47.618809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.736666, - 47.618809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.507532, - 47.82212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.507532, - 47.82212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.763805, - 47.65884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.570696, - 47.675299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.629431, - 47.579263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.629431, - 47.579263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.649047, - 47.629187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.570696, - 47.675299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.591434, - 47.792627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.730633, - 47.658564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.591434, - 47.792627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.770689, - 47.645533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.770689, - 47.645533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78023, - 47.632566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.78023, - 47.632566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.248809, - 47.827935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.730633, - 47.658564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.422678, - 47.866851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.422678, - 47.866851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.614167, - 47.682369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.614167, - 47.682369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "255601106", - "email": "support@freshmile.com", - "phone": "0388688458", - "network": "Morbihan Energies", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.338526, - 43.814852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "421659764", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "MAZDA NIMES ", - "ref": "49683", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-19:00", - "start_date": "2020-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9, - 44.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "4568bb01-f18a-4013-93b0-aa196cb6e8b2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5258151, - 51.071259299999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "MAIRIE DE BRAY DUNES", - "ref": "e5aeda40-da1f-4240-a0d4-6ef60efa5a28", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568217899999, - 44.8856271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SAS CIGIMMO", - "ref": "4bc7d179-75e2-413a-9eee-54d9ec0cb00b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8505335, - 50.2733386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SARL GRARE", - "ref": "aeefa47a-507e-47db-9c3f-a4ea1316dc1d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6032602, - 50.3941188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "3MI", - "ref": "c1cfd29b-d13c-4ffd-a556-aa77d5438876", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.38, - 49.29 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SARL BEAUDRE BAUDOT", - "owner:ref:FR:SIREN": "485169692", - "email": "gohel.stephane@orange.fr", - "phone": "0231360606", - "network": "SECURITEST", - "ref": "fr*map*e000014961534", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:45-18:30", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7417018, - 44.52534544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "511748881", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "DPA -MAZDA MONTELIMAR", - "ref": "60127", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-19:00,Sun 09:00-18:00", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.269016, - 45.868052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "394083984", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ZEN & MOTION - MAZDA LIMOGES", - "ref": "135128", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.269016, - 45.868052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "394083984", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ZEN & MOTION - MAZDA LIMOGES", - "ref": "49597", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2914635, - 43.7346869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "NOVAFFAIRES", - "ref": "16a2b325-a56b-47f6-a647-76b2313b8506", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1188297, - 50.3450779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "CUISINES SCHMIDT", - "ref": "f1881994-3c6b-4596-9c91-5105129072b9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.679598, - 45.191796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "400447710", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", - "ref": "49521", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.679598, - 45.191796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "400447710", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", - "ref": "49590", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6060341, - 48.697317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "785550138", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda BRIE COMTE ROBERT - ZELUS AUTOMOBILES ", - "ref": "49577", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:30", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8932515, - 47.6515701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "401060496", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SIRUFO ESSERT - MAZDA BELFORT ", - "ref": "49591", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-17:00", - "start_date": "2020-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.412921, - 48.147118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "378183818", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SuperU - Evron", - "ref": "16987", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 08:30-19:30", - "start_date": "2019-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.412921, - 48.147118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "378183818", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SuperU - Evron", - "ref": "16986", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:30", - "start_date": "2019-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.412921, - 48.147118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "378183818", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SuperU - Evron", - "ref": "16993", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:30", - "start_date": "2019-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.412921, - 48.147118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "378183818", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SuperU - Evron", - "ref": "16992", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:30-19:30", - "start_date": "2019-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.72, - 45.51 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Société Sigma Tec", - "owner:ref:FR:SIREN": "487923724", - "email": "contact@sigma-tec.fr", - "phone": "0681375294", - "network": "Sigma Tec", - "ref": "cf782f10-bbbb-4e11-a7ed-083cc0459cd7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.630679, - 43.108445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "384794418", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA - Village Auto", - "ref": "36717", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2020-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.630679, - 43.108445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "384794418", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA - Village Auto", - "ref": "36716", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", - "start_date": "2020-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.865277, - 46.858488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "349542977", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Bricomarché - Challans", - "ref": "19826", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 09:00-19:00,Sun 09:00-18:00", - "start_date": "2019-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.865277, - 46.858488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "349542977", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Bricomarché - Challans", - "ref": "19827", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-sat 09:00-19:00,Sun 09:00-18:00", - "start_date": "2019-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9023407, - 49.1824605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "420023616", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda REIMS - A.F.L", - "ref": "56424", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00; Sa:08:00-19:00", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9023407, - 49.1824605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "420023616", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda REIMS - A.F.L", - "ref": "56423", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-19:00; Sa:08:00-19:00", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12813301, - 45.759645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "398027235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché La Tremblade", - "ref": "70278", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12813301, - 45.759645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "398027235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché La Tremblade", - "ref": "70279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12813301, - 45.759645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "398027235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché La Tremblade", - "ref": "89539", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.12813301, - 45.759645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "398027235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché La Tremblade", - "ref": "89540", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65, - 45.91 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "377922208", - "email": "support@electromaps.com", - "phone": "0034931574967", - "network": "Favret Automobiles", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.586281, - 48.115374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "530271162", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Rennes ", - "ref": "50782", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:15-19:00,Sat 09:00-18:00", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1454473, - 50.6428226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "RESTAURANT L'OFFICE", - "ref": "57ae7437-9d11-4de7-991b-04d0113271db", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35, - 43.62 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "325f41d9-7c4a-48ee-9a78-90eb82731102", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94, - 44.01 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "d6f56ed3-1f68-4edd-880f-2410bc766baa", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7093627, - 49.7380567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "394452973", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "BMW", - "ref": "FRFR1EWRWA1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.44, - 46.35 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "377922208", - "email": "support@electromaps.com", - "phone": "0034931574967", - "network": "Favret Automobiles", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 0900-12:00,Sa14:00-18:00", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1653782, - 43.96015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "533577581", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "HYUNDAI", - "ref": "FRFR1EFGBG1", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3932432, - 48.9479326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "394452973", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "BMW", - "ref": "FRFR1EMWPZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153194012, - 44.5041561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EV MAP SAS", - "owner:ref:FR:SIREN": "727350183", - "email": "contact@evmap.fr", - "phone": "09 73 79 63 33", - "network": "GARAGE RAYMOND", - "ref": " NVG0B46001", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-06-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149585, - 44.507331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "399919927", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Ford Marmande - Groupe Malbet", - "ref": "E175319 ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149585, - 44.507331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "399919927", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Ford Marmande - Groupe Malbet", - "ref": "E175320", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61, - 46.41 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "489249144", - "email": "support@freshmile.com", - "phone": "03 69 24 67 32", - "network": "JARDIN DELICE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "E161583", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "E161582", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128771", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128704", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128713", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128712", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128770", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128703", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128758", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128787", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128711", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128789", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128790", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128757", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128788", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128773", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128752", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128774", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128710", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128765", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128751", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128766", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4, - 47.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Chargepoint", - "owner:ref:FR:SIREN": "877380394", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "Chargepoint", - "ref": "f566c0dd-5e8a-4911-b620-a1e97770e222", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47, - 43.45 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Chargepoint", - "owner:ref:FR:SIREN": "451070197", - "email": "support.eu@chargepoint.com", - "phone": "01 85 65 78 78", - "network": "Bornes CIVP", - "ref": "16805fed-ffdf-4120-973a-02f9f6ad4c2a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.47, - 43.45 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Chargepoint", - "owner:ref:FR:SIREN": "451070197", - "email": "support.eu@chargepoint.com", - "phone": "01 85 65 78 77", - "network": "Bornes CIVP", - "ref": "36d4830d-fc1f-4979-a8b2-c842fdfe8590", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39192, - 46.71109 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "n.elec71@gmail.com", - "network": "barreiros", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-08:15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22, - 44.55 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SNAM GROUPE", - "owner:ref:FR:SIREN": "843277609", - "email": "yoan.ramos@snam.com", - "phone": "0565437730", - "network": "Réseau de recharge Viviez", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0697451419812665, - 50.66179854122704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Réseau e-Totem Infrastructures", - "ref": "FRETIP59368A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1596264000000005, - 45.74132497221715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GF3e", - "owner:ref:FR:SIREN": "799065628", - "email": "gf3e@gf3e.com", - "phone": "0473256208", - "network": "Enedis", - "ref": "f2a9d6ba-edd0-4e1e-a9e1-c75aed518e86", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-12:30, Mo-Fr 13:30-18:30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59, - 46.26 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAIRIE DE SAINT-GENEST", - "owner:ref:FR:SIREN": "210302337", - "email": "mairie-saint-genest@wanadoo.fr", - "network": "MAIRIE DE SAINT-GENEST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9824881, - 50.8550651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "BPH GEOMETRE", - "ref": "be2b6f75-a3b1-4254-a94d-c36080526e8a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13, - 45.76 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SARL JUMO", - "owner:ref:FR:SIREN": "809154008", - "email": "frederic.morales@cuisines-aviva.com", - "phone": "04 73 15 01 00", - "network": "AVIVA", - "ref": "fe86cb06-1461-47e5-87fd-4fbf71844232", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094773232378359, - 45.827466656256114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ITM MARENNES", - "owner:ref:FR:SIREN": "341545531", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM MARENNES", - "ref": "172817", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094773232378359, - 45.827466656256114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "341545531", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM MARENNES", - "ref": "172819", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094773232378359, - 45.827466656256114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "341545531", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM MARENNES", - "ref": "164421", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.094773232378359, - 45.827466656256114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "341545531", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM MARENNES", - "ref": "164418", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4046961, - 51.0360565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "CARROSSERIE DEMARTHE", - "ref": "03205e52-39b9-461a-b6ee-4b483a75c506", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2012429, - 43.7718429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "f5fc2930-f303-11ed-a05b-0242ac120003", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.592142, - 50.352955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "freshmile", - "owner:ref:FR:SIREN": "216200451", - "email": "exploitation@freshmile.com", - "phone": "0391830700", - "network": "FRESHMILE", - "ref": "FR*FR1*KPPH*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6233490421436728, - 44.180912759319284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "314684572", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Ford Agen- Groupe Malbet", - "ref": "E175425", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 09:00-19:00", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6233490421436728, - 44.180912759319284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "314684572", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Ford Agen- Groupe Malbet", - "ref": "E172798", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 09:00-19:00", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.668901, - 41.906105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "748341ca-8462-4f72-bf94-7ffc369e534e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.506677, - 42.4479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "2cd293ec-8e21-4d6d-b57f-6caafbbdaba8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.473992, - 42.77468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "e66a1a8e-3139-4937-8f93-5047adf628dd", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.211675, - 41.406843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "867e81ce-5188-416a-ad4f-5397262a0238", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.124327, - 41.40988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "193c7e74-429d-4886-aeb0-b32130ac90ff", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.437093, - 42.594663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "68b650b5-14f6-4e1b-b0bb-1df531cbad31", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.479663, - 42.54706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "e98b0d45-1648-4bb3-8334-ec83df10dcae", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.437152, - 42.594581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "460352ff-39b2-4992-b41f-d1c8049fce24", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.046333, - 42.000249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b321e50d-b3d7-489f-a3a6-f2f2f0b3cd2a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.805342, - 41.89218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "7b11480f-e105-4635-b4a8-ef0ba5c01b88", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.793688, - 41.707589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "a3183c38-0b81-4c65-9707-dce2b446fa53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.389963, - 41.924136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "c6584ed1-7a9c-4567-8c24-27092661687b", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.021637, - 42.637722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0a91bd69-34a2-455d-b6b4-cb69691e05bc", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.008317, - 42.334186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f8aa7fa8-c06f-4b19-886a-87a3a548549e", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.148236, - 41.721265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "66232122-0a47-4115-add7-b02c54d0ced3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.467278, - 42.628813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "dba85b2f-0987-475f-af0f-c9e73bed1006", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.154738, - 41.934884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "8ebb8d2e-f381-41b1-af4b-5299bdf492ca", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.636855, - 42.238424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0ed6649f-72d7-4b44-a85e-77c60c3a0c5e", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.801244, - 42.167298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "bf861d33-2d66-43a3-98dc-7a8e5a31a017", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.697524, - 42.401596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "933f4c75-7ec9-44a4-a558-60acfa011158", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.918164, - 41.672692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f594a621-c183-411c-8549-54269cf30c0f", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.212628, - 42.103312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "45e71a75-aef8-4b84-8511-8112a20c8716", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.855216, - 42.508404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "38436051-4763-44cd-80c8-8cf33648ceeb", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.30191, - 42.673079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "ba5e516b-e37b-4cbd-9739-86be9084248a", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.35969, - 42.60074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "4de294f3-d05c-4151-8ebb-8206f8c412e8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.20858, - 42.466325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "ab8848af-a246-42f6-8abe-e68bf27a25e8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.348162, - 42.964422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "7250ce15-0ed6-4b88-a9f6-d0a1ff1340fb", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.786427, - 41.877695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "02b59851-9d82-4401-94af-537b12b1e16f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.157313, - 42.301834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "528993a4-ab02-4fef-a437-7b0c1776fbf0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.757366, - 42.568969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "e797adbb-17d2-4d48-843c-cef357286c7b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.16492, - 41.390111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "8dbb656e-d5e4-443c-ad35-6b21f0bda600", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.277777, - 41.60608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "579c1d14-019d-4f70-b766-a8a55eeafeb2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.277811, - 41.606221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "3cd77ead-6640-4460-a400-7feac71a06fd", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.277841, - 41.606329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "6007835c-c55e-4cd8-ab0f-85b890e9367f", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.277871, - 41.60646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "09fff65b-9f7c-4439-bd9f-2e8d7fdd2e8a", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.277918, - 41.60664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "6d34afed-25f2-423f-9620-2997a067caeb", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.865745, - 42.009528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "62274d29-ccc4-4ee9-9718-17380a46a31e", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.705408, - 42.130362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "cb841a91-eb88-4e84-81a1-ecb403acfa28", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9579, - 41.64414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "5601d978-d008-4809-9fd7-e93f2a47f189", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.795516, - 42.252954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "7d20c1f9-c4aa-4dc7-87ac-0f4cf0cafa97", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.764996, - 41.928461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "be91f8ff-3c6a-45fb-b3a9-ab1e4f6a80c5", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.346448, - 41.697254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0103fcc1-2f21-4416-82f0-1abd3e740d7f", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.679228, - 41.907975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f92e71a8-f1a5-4d35-8cc8-85e286e7cd3f", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.725979, - 41.916807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "3e0ea59a-149e-4549-9601-8d2d3a3376ef", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.740676, - 41.932975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b202cf34-2f84-4171-bfff-253a1d2e8711", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.753212, - 41.943433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b2ae1699-0590-4eb1-8cc9-f4e0c977b308", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.740141, - 41.927716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "adfa58fa-fb71-4cab-bdb8-140b41ce32aa", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.455771, - 42.957671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "81f11bdc-6410-436b-8def-0abd1f081ba1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.165863, - 42.169635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "90028f89-0376-4d9c-811b-cdcfcbb2a22d", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7585, - 42.568042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "881bd651-f45d-469c-bc3b-b19978a31617", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.762181, - 42.554473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "1c748c8b-76c7-4136-8f8d-855ec69cf8ca", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.762064, - 42.554579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "4e36e768-5f8c-4a1b-9289-fffbf9fae3f0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.440808, - 42.550419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "bb3d81f5-2984-40ef-864c-e97dc2878092", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.406403, - 42.017286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "d5de5dc8-3eb6-4b4d-b5ff-766dadba305c", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.148584, - 42.30688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "57098fad-2b57-440a-9c01-04dc2c353302", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.757215, - 42.543506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "bcf252a2-2c1a-4a66-9e5e-9bfa3fb1a0cc", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.333253, - 41.645189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "ccbd71c7-a443-42d2-bb7b-d9c3c253bfd4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.868565, - 41.645788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "552ec407-68b9-469f-b566-8bd6035ed9eb", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.868415, - 41.645732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "7b298eb5-9b0c-4a7d-800d-d07a5d90f5e6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.936156, - 42.636601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f5750116-3eb5-4fb2-8cd7-9a9b91010e62", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.938499, - 42.635771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "fc2b7892-b112-45e5-aa08-022829efb409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.934076, - 42.637674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "19d293a0-0b1a-49ec-8a45-0678e2c19af4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.176994, - 42.227227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "a33024cd-5b86-4b7d-9d40-0d80630cccf6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.367982, - 41.686208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b6777fc5-069b-4501-8219-863e4c608b73", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.367982, - 41.686208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "1355111d-5b55-49f7-b569-5889d6ad6bcb", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.394812, - 41.699134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "abc031c5-c64a-4f7e-8cc7-a4c656095c5b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.535097, - 42.405317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "2bfd98ec-42fa-4df8-bdb2-72fed2a6d34e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.709331, - 42.301326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b1cef114-1c75-43cf-9fbc-dff78b180795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.803926, - 41.712381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "caacb69b-d250-4a6d-86a3-ab98c744d9a1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.963848, - 41.621902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "609980fa-e716-4abc-ab51-7a63f47bc2ee", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.964013, - 41.621461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "53a75289-2870-423c-ac4f-df14dbbbcaa7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.95273, - 41.570971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "72900b6e-f8f0-4678-b2c2-6e08813108e9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.905017, - 42.121415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "36523750-f5a3-41d4-9b18-03808fda8c74", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.915746, - 41.680914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0a90b56a-3e1d-4a3f-831c-6353d15216ba", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.300121, - 41.623434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "307833fb-70cf-42db-9451-757a717f3c00", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.254713, - 41.580418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "fa741161-be34-4647-9504-3856b861d9fd", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.279842, - 41.612182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "832ce3eb-7f28-4464-9a0f-2c475e495dec", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.28433, - 41.599686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "cbe249c5-c3d7-486c-845a-d71f4da570fc", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.276693, - 41.591126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f658a7b8-b650-48cb-b5f6-d0df6e9cdca3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.27674, - 41.593491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "aca2ec4c-fd6e-4ded-aace-52a1ca9d252a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.326701, - 41.565514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "6d3fcb21-d301-4fdd-ad7e-43400fe49982", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.300442, - 41.620129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "87513969-02bc-4cb6-8a8d-1e228ff293c7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.721916, - 42.253555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f330dd0d-d2ce-4f64-97a8-569f542758de", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.806314, - 41.893857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "e839a051-ddd1-4be5-a870-9d5332878c90", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.351695, - 42.908693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "ae1d3396-7568-4638-89e9-c4c0ea16fbd7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.37966, - 41.666035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "f72436b4-53d0-40c0-9ce4-f8d7e5676592", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.458543, - 42.465956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "3e0e2208-f617-46b3-9deb-6e46a0562283", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.465466, - 42.550769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "fe7a16e5-398b-48e3-b101-194abc9e8217", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.146628, - 41.678688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0fb69050-c96f-4dac-9305-f159ab58d22c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.350708, - 42.96541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "6e542516-266d-42ae-8d2d-4c8a422812bb", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.435675, - 41.999154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "a9ebe6b1-f066-42bf-b055-2d069d1686ae", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.949884, - 42.168536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "92fe8f97-f0d3-4600-ae39-30d031b162ed", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.807748, - 41.894111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "7a0fa23a-1e53-4d82-835e-9cb4c415b854", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.548939, - 42.225865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "1d26f354-cc73-4e46-b142-66ebb0ef11cd", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.548778, - 42.225964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "07dc7cad-41cb-4af5-a02f-472689ec21d9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.428504, - 42.476445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b889876b-b802-4b30-86f0-8a039833f95b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.446608, - 42.550499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "69c04b2c-44ed-47fb-9759-fe3d8c06fef1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.442201, - 42.528147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "233b10e1-981d-4810-be48-3590cfad5412", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.53063, - 42.548657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "44033ed4-e1cf-4137-ab95-223a836fddac", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.408167, - 42.897789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "1bac8abd-42cd-4df5-9c4e-966bd9f70657", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.896456, - 41.698015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "4f60a739-4046-41a2-a48f-495ffad74fcb", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.456341, - 42.741337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "00effb79-072c-45b1-97c5-96657f7983c0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.389505, - 42.469061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "bf0dfde2-f504-41dc-81bf-f62a8501bc34", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.961906, - 42.632429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0790a741-5825-4ddb-bae6-d6740ba4547e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.954898, - 42.629787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "d6dd38d0-a7e5-47ae-a01a-2ee7ddc0de61", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.529622, - 42.363212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "e0caaa09-9a5c-4712-a55f-e60f66a1fd3b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.531038, - 42.38426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "a703da54-fda0-4b54-88e4-7b727a4bc12c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.350042, - 42.614509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "2558af0a-b77d-4ca9-a9a8-9e1a6531518d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.930927, - 41.688053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "b330af16-a9fa-4a3d-b184-904c8fdc1836", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.835956, - 41.703089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "7f8b451f-bff6-46be-a946-0b3941894f5e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.835726, - 41.703037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "624ad20f-693e-41a5-91dd-d30239ffddf7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.896435, - 41.697897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "0ca6e4b9-08cf-401a-b72a-ed8886381958", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.483918, - 42.809196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "fb1b24c2-1623-4007-8986-98e98e43deca", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.440757, - 42.655748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sas e-motum", - "owner:ref:FR:SIREN": "752982645", - "email": "contact@e-motum.net", - "phone": "04 95 30 05 25", - "network": "e-motum", - "ref": "e3cdf95e-31f4-4088-a0ec-0014477b4c97", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.38071, - 48.91828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WeDoM.io", - "owner:ref:FR:SIREN": "834982183", - "email": "contact@wedom.io", - "phone": "0367106538", - "network": "Wingenerhof", - "ref": "4479a8a7-4764-489f-ad01-629f2a2b6a9a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2747532, - 41.5372318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "1b3689d8-f9f9-11ed-be56-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.609770199999, - 45.7115857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "909177297", - "email": "a.tarridec@maborneauto.com", - "phone": "0556372993", - "network": "SCI HORUS", - "ref": "bc840a90-12c1-4963-b396-75837d9ed5cf", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.079235881798033, - 44.125333499688494 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "333a06ae-f6b3-458e-8e5a-5c63c8152bf5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02472, - 44.04578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SATUJO", - "owner:ref:FR:SIREN": "308452051", - "email": "compta.ing@satujo.com", - "phone": "0466606854", - "network": "SATUJO", - "ref": "1a8d48c6-e9ed-4c97-890d-b19511959332", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9778, - 45.70419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RSDA mobility", - "owner:ref:FR:SIREN": "949243562", - "email": "vrousset@mobilease.fr", - "phone": "06 19 25 65 52", - "network": "RSDA mobility", - "ref": "b7a67a33-5aa0-4aa1-ac7d-2cbfa3650cda", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8865, - 43.98066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Camping des graniers", - "owner:ref:FR:SIREN": "508754181", - "email": "Campinggraniers@gmail.com", - "phone": "06 59 74 24 88", - "network": "Camping des graniers", - "ref": "dacc7284-24fa-457a-a239-b5df87276e33", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.143857839450771, - 43.67179371848097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EURO TAXI LINE", - "owner:ref:FR:SIREN": "403825722", - "email": "eurotaxiline@free.fr", - "phone": "06 07 48 92 08", - "network": "EURO TAXI LINE", - "ref": "12ad3b82-577a-46c6-993b-50fc0caefdb9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.4605483, - 42.73825410000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "95bb75f0-fedc-11ed-be56-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85870711, - 43.11350701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "899892202", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SYNETHIS - LA SEYNE SUR MER", - "ref": "166279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85870711, - 43.11350701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "899892202", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SYNETHIS - LA SEYNE SUR MER", - "ref": "166278", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.369951, - 48.685055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Leroux Damien", - "owner:ref:FR:SIREN": "898843719", - "email": "damienleroux2@yahoo.fr", - "phone": "0624947678", - "network": "SCI Tombelaine", - "ref": "dd10fb7b-a5e0-4867-8e10-27d8b1196fc3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "mo-fr 08:00-12:00,13:30-18:00", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30311, - 46.27048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B082", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54547, - 46.39088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B086", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49724, - 46.5597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B085", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49724, - 46.5597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B085", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09176, - 46.84099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B084", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09176, - 46.84099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B084", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.04111, - 46.42062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B083", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41466, - 46.50859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B078", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76626, - 46.73847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B079", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.76626, - 46.73847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B079", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.04111, - 46.42062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B083", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57314, - 46.11511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B080", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22979, - 46.6104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22979, - 46.6104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B081", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30311, - 46.27048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B082", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57314, - 46.11511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B080", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45408, - 46.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B077", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0437, - 47.07127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B087", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00364, - 46.66113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B015", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5452, - 46.81861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B020", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31243, - 46.41752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B019", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31243, - 46.41752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B019", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42732, - 46.2589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B018", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42732, - 46.2589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B018", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40692, - 46.1429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B017", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40692, - 46.1429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B017", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32491, - 46.31971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B016", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32491, - 46.31971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B016", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00364, - 46.66113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B015", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53584, - 46.77338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B014", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60268, - 46.60733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B009", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53584, - 46.77338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B014", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18734, - 46.42672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B013", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18734, - 46.42672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B013", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35242, - 46.59822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B012", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35242, - 46.59822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B012", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61114, - 46.36157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B011", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61114, - 46.36157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B011", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56957, - 46.68164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B010", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56957, - 46.68164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B010", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60268, - 46.60733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B009", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54547, - 46.39088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B086", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0437, - 47.07127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B087", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18065, - 46.78656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B114", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26272, - 46.42595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B107", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63465, - 46.50886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B102", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63465, - 46.50886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B102", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30653, - 46.73026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B103", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30653, - 46.73026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B103", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59284, - 46.41083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B104", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.59284, - 46.41083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B104", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.92126, - 46.55103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B105", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.92126, - 46.55103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B105", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17571, - 46.67593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B106", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17571, - 46.67593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B106", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26272, - 46.42595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B107", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16553, - 46.63914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B108", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99439, - 46.43572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B088", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16553, - 46.63914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B108", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18175, - 46.64537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B109", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18175, - 46.64537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B109", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.27232, - 46.57058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B110", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.27232, - 46.57058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B110", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09633, - 46.71077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B111", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09633, - 46.71077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B111", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48492, - 46.75725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B112", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48492, - 46.75725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B112", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77655, - 46.50507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B113", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.77655, - 46.50507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B113", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52613, - 46.27595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B101", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52613, - 46.27595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.12241, - 46.42201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B100", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.12241, - 46.42201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B100", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.99439, - 46.43572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B088", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2333, - 46.11744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B089", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2333, - 46.11744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B089", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41207, - 46.37738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B090", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41207, - 46.37738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B090", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.84278, - 46.67931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B091", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.84278, - 46.67931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B091", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05509, - 46.35754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B092", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05509, - 46.35754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B092", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62647, - 46.80711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B093", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62647, - 46.80711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B093", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86389, - 46.56596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B094", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86389, - 46.56596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B094", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311, - 46.1585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B095", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311, - 46.1585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B095", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28431, - 46.86971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B096", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28431, - 46.86971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B096", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61404, - 46.77956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B097", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61404, - 46.77956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B097", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46523, - 46.57075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B098", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.46523, - 46.57075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B098", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35019, - 46.51127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B099", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.35019, - 46.51127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B099", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5452, - 46.81861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B020", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54894, - 46.8183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B021", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54894, - 46.8183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B021", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0859, - 47.006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B057", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34093, - 46.3962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B063", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34093, - 46.3962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B063", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21484, - 46.42481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B062", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21484, - 46.42481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B062", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72538, - 46.40226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B060", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72538, - 46.40226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B060", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11599, - 46.42918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B059", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11599, - 46.42918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B059", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12231, - 46.43525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B058", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12231, - 46.43525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B058", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0859, - 47.006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B057", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08278, - 47.0102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B056", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53227, - 46.81327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B022", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08278, - 47.0102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B056", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.33276, - 46.5191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B055", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.33276, - 46.5191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B055", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5978, - 46.43572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B053", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5978, - 46.43572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B053", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0177, - 47.0633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B052", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.0177, - 47.0633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B052", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36949, - 46.47977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B051", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36949, - 46.47977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B051", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67396, - 46.23086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B050", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.67396, - 46.23086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B050", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.06018, - 46.91653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B064", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.06018, - 46.91653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B064", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.51656, - 46.17257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B065", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.51656, - 46.17257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B065", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45408, - 46.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B077", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4882, - 46.76122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B076", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4882, - 46.76122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B076", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48267, - 46.76305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B075", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.48267, - 46.76305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.02363, - 47.10853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B074", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.02363, - 47.10853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B074", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21306, - 46.91925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B073", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.21306, - 46.91925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B073", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86969, - 46.42582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B072", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86969, - 46.42582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B072", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88005, - 46.43179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B071", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88005, - 46.43179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B071", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87701, - 46.43351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B070", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87701, - 46.43351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B070", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0199, - 46.88099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0199, - 46.88099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B069", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68699, - 46.18983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B068", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68699, - 46.18983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B068", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31113, - 46.61954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B067", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31113, - 46.61954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B067", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4139, - 46.54147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B066", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.4139, - 46.54147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B066", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16033, - 46.70139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B049", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16033, - 46.70139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B049", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07669, - 46.61877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B048", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29635, - 46.14706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B034", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66512, - 46.44447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B033", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22874, - 46.64555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B032", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.22874, - 46.64555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B032", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17276, - 46.81292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B031", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17276, - 46.81292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B031", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65501, - 46.72772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B030", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65501, - 46.72772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B030", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28073, - 46.73765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B029", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28073, - 46.73765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B029", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64471, - 46.56817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64471, - 46.56817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64261, - 46.56539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B027", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64261, - 46.56539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B027", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64653, - 46.57301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B026", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64653, - 46.57301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B026", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62974, - 46.56323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B025", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62974, - 46.56323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B025", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5426, - 46.8363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B024", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5426, - 46.8363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B024", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53507, - 46.81348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B023", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53507, - 46.81348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B023", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.41466, - 46.50859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B078", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53227, - 46.81327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B022", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66512, - 46.44447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B033", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29635, - 46.14706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B034", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07669, - 46.61877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B048", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16584, - 46.44436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B035", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04278, - 46.46695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B047", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.04278, - 46.46695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B047", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.01791, - 46.80673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B046", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.01791, - 46.80673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B046", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47077, - 46.22636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B045", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.47077, - 46.22636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B045", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31542, - 46.48522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B044", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31542, - 46.48522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B044", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56652, - 46.87613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B043", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.56652, - 46.87613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B043", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42395, - 46.43994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B042", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.42395, - 46.43994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B042", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26689, - 46.53334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B040", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26689, - 46.53334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B040", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52324, - 46.47848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B039", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52324, - 46.47848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B039", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09682, - 46.7588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B038", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09682, - 46.7588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B038", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185, - 46.48457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B037", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185, - 46.48457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B037", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18271, - 46.30726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B036", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18271, - 46.30726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B036", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16584, - 46.44436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B035", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18065, - 46.78656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B114", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05075, - 46.56231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B007", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18378, - 46.79024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B115", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163263, - 46.206552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.311309, - 46.160084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B155", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210527, - 46.920493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B154", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210527, - 46.920493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B154", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210555, - 46.92054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B153", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210555, - 46.92054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B153", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19736, - 46.35839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B150", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19736, - 46.35839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B150", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19736, - 46.35839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B149", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.54263, - 46.83623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B148", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08608, - 47.00618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B147", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 46.64537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B146", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.72518, - 46.40225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B145", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36019, - 46.66112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36019, - 46.66112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34631, - 46.61766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B143", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3464, - 46.61769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B142", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3464, - 46.61769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B142", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64471, - 46.56817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B141", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37178, - 46.56869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B140", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-19:00", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163327, - 46.20657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B156", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163263, - 46.206552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43986, - 46.73119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B139", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30007, - 46.54829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "5 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B151", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07623, - 46.66011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57998, - 46.75684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B005", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57998, - 46.75684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B005", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65243, - 46.67327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B004", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.65243, - 46.67327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B004", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11232, - 46.94515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B003", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11232, - 46.94515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88642, - 46.69456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B002", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.88642, - 46.69456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.79966, - 46.25815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B001", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.79966, - 46.25815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37142, - 46.56913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B000", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-19:00", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37142, - 46.56913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-19:00", - "start_date": "2017-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30572, - 46.57666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B008", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18378, - 46.79024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B115", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05075, - 46.56231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B007", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.07623, - 46.66011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30007, - 46.54829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "5 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30007, - 46.54829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "5 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37178, - 46.56869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B140", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-19:00", - "start_date": "2020-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30572, - 46.57666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B008", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11593, - 46.42912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B138", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19754, - 46.56906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36394, - 46.6551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37658, - 46.55698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37658, - 46.55698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24605, - 46.68789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87585, - 46.37715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B116", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.87585, - 46.37715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B116", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70529, - 46.75958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B117", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70529, - 46.75958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B117", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30925, - 46.73564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B118", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.30925, - 46.73564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B118", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49537, - 46.32872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B119", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49537, - 46.32872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B119", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34213, - 46.54957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.34213, - 46.54957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B120", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40516, - 46.66909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40516, - 46.66909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26751, - 46.49409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24605, - 46.68789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37044, - 46.5711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B137", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.36394, - 46.6551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B125", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26751, - 46.49409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19754, - 46.56906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43986, - 46.73118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37044, - 46.5711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B136", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37044, - 46.5711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81045, - 46.4907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81045, - 46.4907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53496, - 46.77659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.37044, - 46.5711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60611, - 46.93734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60611, - 46.93734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.53496, - 46.77659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43986, - 46.73118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28977, - 46.24312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.28977, - 46.24312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3933, - 46.35718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3933, - 46.35718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81115, - 46.78645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.81115, - 46.78645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.25833, - 46.71738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.25833, - 46.71738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOREGIES", - "owner:ref:FR:SIREN": "450889225", - "email": "service-recharge@soregies.fr", - "phone": "05 49 44 79 00", - "network": "ALTERBASE86", - "ref": "B127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3043377, - 49.1915441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PTBG et associés", - "owner:ref:FR:SIREN": "336450051", - "email": "f.dineur@groupeptbg.fr", - "phone": "0231291931", - "network": "PTBG", - "ref": "RCG0C210D9", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4974859, - 51.0330233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "CAMPING DU PERROQUET", - "ref": "4e20688a-6640-48a8-877d-e0551a005367", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5514549, - 51.078304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "CAMPING DU PERROQUET", - "ref": "e1efaa9c-a39b-43d0-aebb-5984c425c47d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9713852, - 50.9870357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "CAMPING DE LA PLAGE", - "ref": "76ef5ec8-72ed-4727-8cd7-905954ff2646", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5669992, - 51.033072399999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "MAIRIE DES MOERES", - "ref": "e01071bd-0bd4-4615-84e9-f8e4d41fae9d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03, - 43.18 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BH RESTAURATION", - "owner:ref:FR:SIREN": "478236318", - "email": "restaurantlasource@wanadoo.fr", - "phone": "0613510848", - "network": "BORNES LA SOURCE", - "ref": "FR*MAP*P000000007472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.633379459639794, - 47.230062067926525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "323873174", - "email": "exploitation@freshmile.com", - "phone": "369246732", - "network": "Freshmile", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.633379459639794, - 47.230062067926525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "323873174", - "email": "exploitation@freshmile.com", - "phone": "369246732", - "network": "Freshmile", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.633379459639794, - 47.230062067926525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "323873174", - "email": "exploitation@freshmile.com", - "phone": "369246732", - "network": "Freshmile", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85, - 45.71 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "388727844", - "email": "exploitation@freshmile.com", - "phone": "03 68 78 14 35", - "network": "FRESHMILE", - "ref": "5aa39699-a74b-42e3-90ce-7167a52af169", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63768, - 46.367228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "437983224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SCEA LES FUIES ", - "ref": "E175027", - "socket:type2_combo": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "Lu- Ve 09:00-18:00", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.63768, - 46.367228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "437983224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SCEA LES FUIES", - "ref": "E175028", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "Lu- Ve 09:00-18:00", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79478, - 48.505161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61P9VBJ8QTZVKEFRX1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.021417, - 48.343342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH616DTB2ER6983K24PN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.021417, - 48.343342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH616DTB2ER6983K24PN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.305767, - 48.782028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6188B0GYCB085NCB34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.305767, - 48.782028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6188B0GYCB085NCB34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.860826, - 48.50412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MEPVMYM1JS6XDRYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59789, - 48.283298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Y8K5YQPJP1YT4BZ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59789, - 48.283298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Y8K5YQPJP1YT4BZ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800076, - 48.509586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615GBMD56QDRJ7JNPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79478, - 48.505161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61P9VBJ8QTZVKEFRX1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.660926, - 48.521801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61H3RP369G9Z4HJ948", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800076, - 48.509586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615GBMD56QDRJ7JNPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64036, - 48.542576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MHDXZ175HME2B2NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64036, - 48.542576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MHDXZ175HME2B2NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.591242, - 49.017696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH618FMNXABED9698TMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.591242, - 49.017696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH618FMNXABED9698TMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.033389, - 48.713238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N4G320YY8QC4KCNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.033389, - 48.713238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N4G320YY8QC4KCNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.660926, - 48.521801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61H3RP369G9Z4HJ948", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.874503, - 48.75351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XMYRQ89RBARGP0C2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.874503, - 48.75351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XMYRQ89RBARGP0C2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786925, - 48.999126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BSPYP13FFJF1643Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.957987, - 48.822292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FPF2MSHNDHDC50N6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.957987, - 48.822292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FPF2MSHNDHDC50N6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.765274, - 48.448474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZDX6C28GEPQQJHACKBPAZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.765274, - 48.448474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZDX6C28GEPQQJHACKBPAZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.349335, - 48.483391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61X1D8BSQAJ2E72F29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.825952, - 48.912483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V1RD9ZS470MESW77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.825952, - 48.912483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V1RD9ZS470MESW77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786925, - 48.999126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BSPYP13FFJF1643Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.971726, - 48.511906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615TX3C9VPZF2KXTVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054889, - 48.991291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6190M8XFX4J3JB6Y05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.054889, - 48.991291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6190M8XFX4J3JB6Y05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.123814, - 48.92767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61M7ERN7WVVETNSWC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.123814, - 48.92767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61M7ERN7WVVETNSWC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.568649, - 48.316978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH618NJP57369S0XJBFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.568649, - 48.316978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH618NJP57369S0XJBFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.971726, - 48.511906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615TX3C9VPZF2KXTVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.349335, - 48.483391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61X1D8BSQAJ2E72F29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829, - 48.455761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GVE1W45TQMVHRR86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.860826, - 48.50412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MEPVMYM1JS6XDRYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.985625, - 48.941795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61G266A66SE9DG9B7G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69995, - 48.30003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J7W7NMHQMVEC2RA6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69995, - 48.30003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J7W7NMHQMVEC2RA6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.427434, - 48.851772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6160PFDJT763HCR33P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.427434, - 48.851772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6160PFDJT763HCR33P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.743907, - 49.025669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61F9D9W7GGTNGS2NBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.743907, - 49.025669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61F9D9W7GGTNGS2NBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.828918, - 49.00922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WGK1CSYFH3ZXEPXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.828918, - 49.00922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WGK1CSYFH3ZXEPXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253999, - 48.383236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QSEA2TT42JQTH6MC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253999, - 48.383236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QSEA2TT42JQTH6MC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.060808, - 48.452545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617FRP6TWWNWE4P3A6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.060808, - 48.452545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617FRP6TWWNWE4P3A6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8905, - 48.6065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ZAYE68C06G8Q9BMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8905, - 48.6065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ZAYE68C06G8Q9BMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.915816, - 48.789227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V9K8ZRSR3XPB92V5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.915816, - 48.789227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V9K8ZRSR3XPB92V5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.603089, - 49.064533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J9776V0ADCNMGHWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.603089, - 49.064533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J9776V0ADCNMGHWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.565315, - 48.580364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TJN1VMHBQF5R1GH5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.565315, - 48.580364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TJN1VMHBQF5R1GH5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.830538, - 48.768833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6198YFVGWBKKTW620N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.830538, - 48.768833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6198YFVGWBKKTW620N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.928877, - 48.335297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61X9AQYTM4CDF50Y9A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.928877, - 48.335297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61X9AQYTM4CDF50Y9A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.496094, - 48.373798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6106W1EHH3HABH1GG9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.496094, - 48.373798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6106W1EHH3HABH1GG9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35106, - 48.45281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614YDA9431KPAVPBE3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35106, - 48.45281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614YDA9431KPAVPBE3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.229534, - 48.904442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615QZ24N94SBS0KBQ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.438183, - 48.694653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TR6BXJYMH25Q81SG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.985625, - 48.941795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61G266A66SE9DG9B7G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.615704, - 48.747417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01403a42-66f5-4e60-bcd6-8f6cb0af432a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.850102, - 48.349255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH612583SBGWNS3MWAKW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.615704, - 48.747417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01403a42-66f5-4e60-bcd6-8f6cb0af432a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66521, - 48.62632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614FJF81C3AAMX98NB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66521, - 48.62632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614FJF81C3AAMX98NB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.694243, - 48.626202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XPEKRDF6YA7HMZZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.694243, - 48.626202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XPEKRDF6YA7HMZZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.688477, - 48.511044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ZBQTS3PR3ATPQQHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.688477, - 48.511044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ZBQTS3PR3ATPQQHJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.026891, - 49.025196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614YH6Y44CRNT61J05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.026891, - 49.025196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614YH6Y44CRNT61J05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.246524, - 48.513992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MGQBB90EPZZ6RBP9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.246524, - 48.513992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MGQBB90EPZZ6RBP9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.829, - 48.455761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GVE1W45TQMVHRR86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.700226, - 48.548374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NA6C8BWKXA4ZJN6B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.700226, - 48.548374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NA6C8BWKXA4ZJN6B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.991441, - 48.862556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ARJ2FXM1YTQCNDGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.991441, - 48.862556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ARJ2FXM1YTQCNDGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.151188, - 48.558975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61281F27RSXT6EQ5NW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.151188, - 48.558975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61281F27RSXT6EQ5NW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.771959, - 49.049637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NTEXBAEVC7N8XSSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.771959, - 49.049637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NTEXBAEVC7N8XSSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.859685, - 48.926731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61A2VGXQ2FPA7YGD3Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.859685, - 48.926731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61A2VGXQ2FPA7YGD3Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.034994, - 48.38625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AYQENVTDGRD2NHFM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.034994, - 48.38625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AYQENVTDGRD2NHFM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.163473, - 48.7766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J9TRC0E6S2PE96KG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.163473, - 48.7766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J9TRC0E6S2PE96KG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.581679, - 49.03389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z5005NWZFCN4S2YP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.581679, - 49.03389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z5005NWZFCN4S2YP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.850102, - 48.349255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH612583SBGWNS3MWAKW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.438183, - 48.694653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TR6BXJYMH25Q81SG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.951969, - 48.555733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Q2450FRWGGNY80W5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.951969, - 48.555733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Q2450FRWGGNY80W5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.219879, - 48.758823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61K4NJ8AEGN29B15RV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.906715, - 48.858112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NKNCRE4MN5SBC9T6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.906715, - 48.858112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NKNCRE4MN5SBC9T6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.998514, - 48.469975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61CZMYP29GAQ1GC4HR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.998514, - 48.469975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61CZMYP29GAQ1GC4HR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.960665, - 48.647747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6180ZSWJ0ABGJ7FH89", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.960665, - 48.647747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6180ZSWJ0ABGJ7FH89", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08237, - 48.815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6172NAS9AG8F41KN6S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08237, - 48.815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6172NAS9AG8F41KN6S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.085838, - 48.81382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AQCGJ7RC8DDB28NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.085838, - 48.81382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AQCGJ7RC8DDB28NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.974578, - 49.006927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61KQMQ3JSMY5G6DTFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.974578, - 49.006927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61KQMQ3JSMY5G6DTFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.687649, - 48.945904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH619XDZ91BD13VZZTK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.687649, - 48.945904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH619XDZ91BD13VZZTK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.219879, - 48.758823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61K4NJ8AEGN29B15RV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.909066, - 48.857899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615ARP522Z2QF17A8J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.195108, - 48.616379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QTR7Y591GGPT9YSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.195108, - 48.616379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QTR7Y591GGPT9YSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.841548, - 48.664284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6150BCSKADS949NNAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.841548, - 48.664284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6150BCSKADS949NNAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.184065, - 48.81773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615K9YFB4VNVPPBYS6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.184065, - 48.81773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615K9YFB4VNVPPBYS6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.837548, - 48.973423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH618H9RPFGP1PPSK2KW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.837548, - 48.973423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH618H9RPFGP1PPSK2KW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835017, - 48.529648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XXBXBM3V6MWHM2SB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835017, - 48.529648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XXBXBM3V6MWHM2SB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62648, - 48.233624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FD1B7KBDDZ58ZV6A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62648, - 48.233624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FD1B7KBDDZ58ZV6A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096748, - 48.419575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61VZ8SH2QWCYV4ZHFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096748, - 48.419575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61VZ8SH2QWCYV4ZHFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.909066, - 48.857899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615ARP522Z2QF17A8J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90766, - 48.75396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6138RM8VZ0HARNPBDR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.654417, - 48.243546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61HXHE8EZ4KVA08RHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.922666, - 48.312195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61PCPP9M7Z1HWEX6W9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.961401, - 48.418995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QEC61D29D0JQPXP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.961401, - 48.418995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QEC61D29D0JQPXP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.744265, - 48.939857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FZ04WKXSKB4BZKFD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.744265, - 48.939857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FZ04WKXSKB4BZKFD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.293563, - 48.482601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Q3TKEJKHYAZT3HRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.293563, - 48.482601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Q3TKEJKHYAZT3HRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120485, - 48.398468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61HT51HJANTGRK3N18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.120485, - 48.398468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61HT51HJANTGRK3N18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.671611, - 48.965435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MVDX55W13APA2PV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.671611, - 48.965435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MVDX55W13APA2PV6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.756482, - 48.486507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DXWS7JDZRA1P5P49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.756482, - 48.486507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DXWS7JDZRA1P5P49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39162, - 48.41394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61697B2JJF1YQXZYFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39162, - 48.41394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61697B2JJF1YQXZYFQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.922666, - 48.312195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61PCPP9M7Z1HWEX6W9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.90766, - 48.75396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6138RM8VZ0HARNPBDR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8, - 48.4575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z0GCXDZK54V3RCTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8, - 48.4575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z0GCXDZK54V3RCTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.674363, - 48.230656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XJC9QZRM3CEVSNFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.674363, - 48.230656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XJC9QZRM3CEVSNFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.945185, - 48.463512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z73TMEPH6TZXVW5G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.945185, - 48.463512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z73TMEPH6TZXVW5G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139536, - 48.476547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61YZWMDZXX2P107VVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139536, - 48.476547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61YZWMDZXX2P107VVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684942, - 49.053848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61G6MNTJGT6FCZKNGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684942, - 49.053848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61G6MNTJGT6FCZKNGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635144, - 48.515441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BYGVDJ7R63NQGJ33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635144, - 48.515441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BYGVDJ7R63NQGJ33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068942, - 49.090664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH611Q923KH5ADARW2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068942, - 49.090664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH611Q923KH5ADARW2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70119, - 48.149586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH610W301VEXX0C9G8HD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.70119, - 48.149586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH610W301VEXX0C9G8HD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.700847, - 48.488678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NJM3N38YN4AFMA86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.188327, - 48.398651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6018FD3AN16N6CZ5B0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.570593, - 48.525444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V1G21XD9YK3CT4W9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.588406, - 48.526657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GKXMHQF39J59JWGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.588406, - 48.526657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GKXMHQF39J59JWGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.226534, - 48.684597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61R7A2RC6PQKY808ZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.226534, - 48.684597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61R7A2RC6PQKY808ZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24285, - 48.678036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N9MR617QEESG9B58", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24285, - 48.678036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N9MR617QEESG9B58", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.244617, - 48.702133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z4V01APHPD4HN65N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.244617, - 48.702133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61Z4V01APHPD4HN65N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.938246, - 48.675091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617HMA9QVJ43VQ9F5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.938246, - 48.675091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617HMA9QVJ43VQ9F5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.318183, - 48.85722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DSK7H79WFYF7T5RT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478393, - 48.139336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60ECP5XDNXDFK3HVCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478393, - 48.139336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60ECP5XDNXDFK3HVCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.188327, - 48.398651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6018FD3AN16N6CZ5B0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.700847, - 48.488678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NJM3N38YN4AFMA86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.603382, - 48.44495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60YBBWPJTRVZESZ26B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.603382, - 48.44495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60YBBWPJTRVZESZ26B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.146731, - 48.398796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH602FGPT3MJJY9A3TN0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.146731, - 48.398796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH602FGPT3MJJY9A3TN0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.706278, - 48.231504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60YSH183AXJKF1QDE3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.706278, - 48.231504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60YSH183AXJKF1QDE3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.021658, - 48.97871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60BBZ8ARN3XJK3K1JT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.021658, - 48.97871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60BBZ8ARN3XJK3K1JT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.718575, - 48.924843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60Q14BJPZFWR9V3SJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.718575, - 48.924843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60Q14BJPZFWR9V3SJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.531976, - 48.279121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6058QXP88C4EMXM9MN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.531976, - 48.279121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6058QXP88C4EMXM9MN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56414, - 48.348167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60ESS2APKE7BR49DN1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56414, - 48.348167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH60ESS2APKE7BR49DN1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.570593, - 48.525444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V1G21XD9YK3CT4W9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.561816, - 48.503139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH612745HQQ6N39DZXC6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.561816, - 48.503139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH612745HQQ6N39DZXC6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13829, - 48.8218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH611V33JBR9K727DM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.760311, - 48.971008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TNF7SHNE997NPZ1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.760311, - 48.971008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TNF7SHNE997NPZ1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.250729, - 48.482674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61KHC09TQDPBX6EE2Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.250729, - 48.482674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61KHC09TQDPBX6EE2Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.314407, - 48.529079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TG3DXJGS087Z7W4Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.314407, - 48.529079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TG3DXJGS087Z7W4Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.459796, - 48.54184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH619WAB3P82F16EMC0Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.459796, - 48.54184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH619WAB3P82F16EMC0Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.124815, - 48.79105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GF4TYVNHGJZN4V37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.124815, - 48.79105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GF4TYVNHGJZN4V37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.607938, - 48.465767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6113N1FAJ4SXYZ1B94", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.607938, - 48.465767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6113N1FAJ4SXYZ1B94", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601874, - 48.56225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N10JK8ACTNKVMS13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.601874, - 48.56225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N10JK8ACTNKVMS13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.343567, - 48.69384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617RS00Z06JRBZ3SP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.343567, - 48.69384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617RS00Z06JRBZ3SP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.236135, - 48.922424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MYV6VSDS728MWJJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.236135, - 48.922424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61MYV6VSDS728MWJJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.237932, - 48.416935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JKZ0MNXBV9QY3Q22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.237932, - 48.416935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JKZ0MNXBV9QY3Q22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.906949, - 48.882027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61HVVT0NPS06MV38WB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.906949, - 48.882027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61HVVT0NPS06MV38WB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.435735, - 48.257244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61YVK6XCWX46CSQAGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.435735, - 48.257244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61YVK6XCWX46CSQAGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.657576, - 48.195572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TPHBTSFND6ME12R8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.657576, - 48.195572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61TPHBTSFND6ME12R8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.259898, - 48.895916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BFRHTER5H6HW5WZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.259898, - 48.895916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BFRHTER5H6HW5WZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13829, - 48.8218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH611V33JBR9K727DM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.229534, - 48.904442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615QZ24N94SBS0KBQ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.318183, - 48.85722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DSK7H79WFYF7T5RT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.654417, - 48.243546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61HXHE8EZ4KVA08RHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.947197, - 48.958482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J186694WWK9SKV1B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835405, - 48.644661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61B1QR8NPNPA5FB6XD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835405, - 48.644661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61B1QR8NPNPA5FB6XD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092751, - 49.046368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH611S01G19MY7TRAAAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092751, - 49.046368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH611S01G19MY7TRAAAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080205, - 48.688385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BST212NKJMVXM29X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080205, - 48.688385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BST212NKJMVXM29X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92905, - 48.375946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AN7SE9N3CG32EQS1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.891339, - 48.44434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61SRQ9A5PY53130HYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.891339, - 48.44434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61SRQ9A5PY53130HYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.602099, - 48.342205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JC7J36YVW9KYEWZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.602099, - 48.342205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JC7J36YVW9KYEWZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.947197, - 48.958482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J186694WWK9SKV1B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.708959, - 48.58168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WGPSNTS8EQJ6902S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011744, - 48.735561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH613JA6ST9Z9TX9QQBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011744, - 48.735561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH613JA6ST9Z9TX9QQBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.806383, - 49.039307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WTEKG4MTFSZFAC2M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.806383, - 49.039307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WTEKG4MTFSZFAC2M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.541457, - 48.499256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GB3Q6R56FSTMZADS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.541457, - 48.499256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GB3Q6R56FSTMZADS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.232304, - 48.792183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61A4FD8RXE2D5HVXZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.232304, - 48.792183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61A4FD8RXE2D5HVXZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.915421, - 48.558926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DRET8WA96DW8JABX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.915421, - 48.558926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DRET8WA96DW8JABX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.828953, - 48.578262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GSQNYV98299GXJRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848262, - 48.325367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WWA0H0Y8X8NR586D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848262, - 48.325367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WWA0H0Y8X8NR586D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.830368, - 48.813721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ED7429VDSMRNSYCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.830368, - 48.813721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ED7429VDSMRNSYCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.772659, - 48.660645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JC7JD541PZX91Q19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.773878, - 48.637527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6106Q394Y3BDB7BX3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.773878, - 48.637527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6106Q394Y3BDB7BX3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969121, - 48.282539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61R37GJPE2BGRQBVFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.969121, - 48.282539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61R37GJPE2BGRQBVFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.664648, - 48.571087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JQAJB8N08A2XPVV4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.664648, - 48.571087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JQAJB8N08A2XPVV4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.003289, - 48.690327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JRJ229GGPBXGQRTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.003289, - 48.690327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JRJ229GGPBXGQRTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165309, - 48.439373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QHH4V61S5VESVP7P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.165309, - 48.439373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QHH4V61S5VESVP7P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.376131, - 48.455891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DPW9CNSTFH732PYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.376131, - 48.455891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61DPW9CNSTFH732PYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406241, - 48.649963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61226N04Q3D9F4JANT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406241, - 48.649963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61226N04Q3D9F4JANT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.599086, - 48.494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6137W78F5N8C2QK3VA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.599086, - 48.494175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6137W78F5N8C2QK3VA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672179, - 48.900551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ZBJNVVX7GPVZJR86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672179, - 48.900551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61ZBJNVVX7GPVZJR86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.895756, - 48.342731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61543XR9FNK0WBWB8W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.895756, - 48.342731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61543XR9FNK0WBWB8W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.343021, - 48.861053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FTXDZBQKSYMRJR4Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.343021, - 48.861053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FTXDZBQKSYMRJR4Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.828953, - 48.578262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61GSQNYV98299GXJRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92905, - 48.375946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AN7SE9N3CG32EQS1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.708959, - 48.58168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61WGPSNTS8EQJ6902S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.740637, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617Z7JPB2W1XVCXPCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.048279, - 48.758305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614BC0DWNSTX28T6S1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29573, - 48.875221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH613YAZN3S2J4AMDG4C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29573, - 48.875221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH613YAZN3S2J4AMDG4C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.639528, - 48.346184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61B707RBDK5EFTM5VT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.639528, - 48.346184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61B707RBDK5EFTM5VT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.238447, - 48.850102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AR5S7HGFBEWKSTVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.238447, - 48.850102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61AR5S7HGFBEWKSTVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.233131, - 48.848412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BXDNWWQ0ST5558Y4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.233131, - 48.848412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BXDNWWQ0ST5558Y4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62365, - 48.610615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61YS90NBC7MSK83QP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62365, - 48.610615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61YS90NBC7MSK83QP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.740637, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH617Z7JPB2W1XVCXPCM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.023394, - 48.421993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NHB83D9ESKR7X5BM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.281679, - 48.539558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BJ58DFFJ4X4N2B6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.281679, - 48.539558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61BJ58DFFJ4X4N2B6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.040816, - 48.899723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6106VFGF12QKK3NDS9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.040816, - 48.899723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6106VFGF12QKK3NDS9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.984761, - 48.734184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QWHK70G0X1BKPBN8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18528, - 48.906219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XCEQM4H8763DKJRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552458, - 48.474224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J4GEKKMK6ZRRDMHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552458, - 48.474224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61J4GEKKMK6ZRRDMHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.079428, - 48.656075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JWDDTJEE5S4C3RY1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.079428, - 48.656075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JWDDTJEE5S4C3RY1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.772659, - 48.660645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61JC7JD541PZX91Q19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.048279, - 48.758305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH614BC0DWNSTX28T6S1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.984761, - 48.734184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61QWHK70G0X1BKPBN8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.023394, - 48.421993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61NHB83D9ESKR7X5BM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69905, - 48.652874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V21XFV3EBBW23ZCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18528, - 48.906219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61XCEQM4H8763DKJRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.324744, - 48.566856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FG0J89KJ37MYHJGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.324744, - 48.566856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61FG0J89KJ37MYHJGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35406, - 48.537212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61X8484D24XKRFEH9V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35406, - 48.537212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61X8484D24XKRFEH9V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73093, - 48.18083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F7RQ4ZF5QVYGXR1RG90QKZ3X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.73093, - 48.18083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F7RQ4ZF5QVYGXR1RG90QKZ3X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.717254, - 48.657776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6188ZPT0CHFCQQM031", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.961653, - 48.885735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N7MXZGDJMEN8TQYQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.289959, - 48.509865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH610WZFNN06YE1R2PHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.289959, - 48.509865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH610WZFNN06YE1R2PHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.717254, - 48.657776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH6188ZPT0CHFCQQM031", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69905, - 48.652874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61V21XFV3EBBW23ZCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549188, - 48.557755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61B7EXKKHQQMPAKWF5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.961653, - 48.885735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61N7MXZGDJMEN8TQYQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.750641, - 48.52702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615T44TYYE5HJP8AXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.582113, - 48.596577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61K49RBSYZC50SY52B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549188, - 48.557755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61B7EXKKHQQMPAKWF5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.582113, - 48.596577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61K49RBSYZC50SY52B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068419, - 48.92791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61M738W0VVEKZ9J14G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068419, - 48.92791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH61M738W0VVEKZ9J14G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.750641, - 48.52702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bouygues Energies et Services", - "owner:ref:FR:SIREN": "200041309", - "email": "a.buffler@bouygues-es.com", - "phone": " 07 60 88 38 03", - "network": "Ecocharge77", - "ref": "01F5ZAKH615T44TYYE5HJP8AXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS8-P140", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS7-P139", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS6-P138", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS5-P137", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS4-P136", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS3-P135", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS2-P115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS1-P104", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS9-P141", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS10-P142", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS13-P156", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS20-P239", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS19-P238", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS18-P237", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS17-P236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS16-P235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS15-P215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS14-P204", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS12-P144", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS11-P143", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS30-P336", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS29-P335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS28-P315", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS27-P304", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS26-P256", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS25-P244", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS24-P243", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS23-P242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS22-P241", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS21-P240", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS34-P340", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS32-P338", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS31-P337", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS33-P339", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS36-P342", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS35-P341", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS38-P344", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS40-P415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS39-P356", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS37-P343", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS43-P455", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS42-P435", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.51, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANYOS", - "owner:ref:FR:SIREN": "897541264", - "email": "contact@anyos.fr", - "network": "ANYOS", - "ref": "ANYOS-IOTLAB-HBS41-P434", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04, - 43.85 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sanou électricité", - "owner:ref:FR:SIREN": "349578872", - "email": "contact.sanouelectricite@gmail.com", - "phone": "0651530708", - "network": "Sanou électricité", - "ref": "25b71f4e-65b6-4bbb-91d1-834ec3833734", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.97, - 45.73 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "801177528", - "email": "exploitation@freshmile.com", - "phone": "03 68 78 14 35", - "network": "FRESHMILE", - "ref": " 5aa39699-a74b-42e3-90ce-7167a52af169", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131164, - 45.963065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Saint-Martin-de-Bellevue", - "ref": "FRCARP74282A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131164, - 45.963065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Saint-Martin-de-Bellevue", - "ref": "FRCARP74282A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131164, - 45.963065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Saint-Martin-de-Bellevue", - "ref": "FRCARP74282A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9797605, - 48.6682107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Saint-Malo", - "ref": "FRCARP35288A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402206153869494, - 50.483224599077815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Pernes", - "ref": "FRCARP62652A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402206153869494, - 50.483224599077815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Pernes", - "ref": "FRCARP62652A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.556822342990649, - 48.69566871299743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Périgny", - "ref": "FRCARP17274A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.556822342990649, - 48.69566871299743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Périgny", - "ref": "FRCARP17274A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.311405, - 46.354612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact La Crèche", - "ref": "FRCARP79048A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.311405, - 46.354612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact La Crèche", - "ref": "FRCARP79048A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.051543085729363, - 48.16127710253362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Bazoche Les Gallerandes", - "ref": "FRCARP45025A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.051543085729363, - 48.16127710253362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Bazoche Les Gallerandes", - "ref": "FRCARP45025A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9797605, - 48.6682107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Contact Saint-Malo", - "ref": "FRCARP35288A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9722276, - 50.4945611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "SAS LARGO", - "ref": "f07350fd-879f-4cb5-9cee-8300c3b9e936", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9863507, - 50.4699234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "OMEO", - "ref": "9fde0393-47b8-4e9a-a0ea-635a099b06f4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6536518, - 50.636603699999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "ANOSTEKE", - "ref": "52a68029-6dbc-4c2b-8061-3fb41b638ad5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.081249, - 49.23891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "802892794", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "CITROEN ET DS STORE - REIMS", - "ref": "E175100", - "socket:type2_combo": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-18:00", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.081249, - 49.23891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "802892794", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "CITROEN ET DS STORE - REIMS", - "ref": "E175099", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-18:00", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC01", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC02", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC04", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC05", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC06", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC07", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC08", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC09", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765641424794523, - 45.80602585384945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOBELEC", - "owner:ref:FR:SIREN": "507771335", - "email": "contact@groupe-mobelec.fr", - "phone": "0602496954", - "network": "FIREX", - "ref": "FRMOB69570FIREXAC03", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2023-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0722651, - 49.0455191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SECAL", - "owner:ref:FR:SIREN": "892771049", - "email": "contact@secal-electricite.fr", - "phone": "0134222222", - "network": "SCI DU 151178", - "ref": "EVB-P21151698", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 20:00-07:00,Mo-Fr 20:00-07:00,Th 20:00-08:00", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0725349, - 49.0444744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "530148816", - "email": "Contact@secal-electricite.fr", - "phone": "0131013103", - "network": "SCI FCJ", - "ref": "EVB-P1903315", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 20:00-06:00,Th 08:00-00:00", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.52645, - 48.75191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Wedom", - "owner:ref:FR:SIREN": "309134476", - "email": "contact@wedom.io", - "phone": "0367106538", - "network": "Vollmer", - "ref": "b2e5c99b-76e6-4eb7-91a6-cdea850b99ec", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0767992, - 44.3455705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "909177297", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "TRISCOS LAVAGE", - "ref": "5f632578-9bb2-4c7d-b991-8f77b09b1f9f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.935854, - 49.32408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "522202977", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM NETTO TRIEUX", - "ref": "E147592", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 08:30-20:00, Di 08:30-12:30", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.935854, - 49.32408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "522202977", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "ITM NETTO TRIEUX", - "ref": "E147593", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 08:30-20:00, Di 08:30-12:30", - "start_date": "2022-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64, - 43.79 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sanou électricité", - "owner:ref:FR:SIREN": "388067670", - "email": "contact.sanouelectricite@gmail.com", - "phone": "0651530708", - "network": "SVI", - "ref": "2ea7b747-59db-4b70-b0a4-7e64286475ba", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA REIMS", - "ref": "66813", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-19:00", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.084008, - 49.238637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "408829224", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA REIMS", - "ref": "66814", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa 09:00-19:00", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.10671, - 48.89223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WeDoM", - "owner:ref:FR:SIREN": "216704635", - "email": "contact@wedom.io", - "phone": "0367106538", - "network": "Commune de Seltz", - "ref": "209f1166-0199-4e71-93f1-3759c8086176", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5774003, - 43.2402602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "ddd39de6-d91a-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9277708, - 42.6585884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "b662d8fe-d919-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.03, - 48.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BAUDUCEL", - "owner:ref:FR:SIREN": "803410844", - "email": "bauducel-christophe@orange.fr", - "phone": "0243986242", - "network": "AD BAUDUCEL", - "ref": "1339d91c-529f-4fdc-abf5-bbf33cb4185d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3196844, - 51.0175233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "PFMV - GRANDE SYNTHE", - "ref": "8cec9f22-53ca-40ba-9fc4-c58494ecc43c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0558528, - 43.12799930000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "e274e464-c94c-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0558528, - 43.12799930000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "ddaaa09a-c94c-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.192107439041139, - 43.6967734467621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "501380570", - "email": "info@electromaps.com", - "network": "CLUB HIPPIQUE DE NICE", - "ref": "d642bc84-c3e4-4813-be28-38feb316f9ff", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.251979, - 49.410967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.655559, - 49.56802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.655559, - 49.56802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.655559, - 49.56802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.655559, - 49.56802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336322, - 51.022253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336322, - 51.022253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336322, - 51.022253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336322, - 51.022253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09623, - 49.347188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09623, - 49.347188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09623, - 49.347188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09623, - 49.347188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.251979, - 49.410967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.251979, - 49.410967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.959227, - 49.540126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.111005, - 49.40844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.111005, - 49.40844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.111005, - 49.40844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.169503, - 49.016271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.169503, - 49.016271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.169503, - 49.016271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.169503, - 49.016271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65557, - 49.568055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65557, - 49.568055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65557, - 49.568055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.65557, - 49.568055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.323656, - 49.209081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.323656, - 49.209081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.323656, - 49.209081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.323656, - 49.209081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331869, - 47.612421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331869, - 47.612421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331869, - 47.612421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.331869, - 47.612421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34201, - 47.046528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34201, - 47.046528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34201, - 47.046528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34201, - 47.046528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.111005, - 49.40844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.959227, - 49.540126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44438, - 44.913949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.959227, - 49.540126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44438, - 44.913949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44438, - 44.913949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44438, - 44.913949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.334355, - 50.997593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.334355, - 50.997593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.334355, - 50.997593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.251979, - 49.410967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.057926, - 50.383609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.057926, - 50.383609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.057926, - 50.383609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.057926, - 50.383609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.817843, - 50.453351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.817843, - 50.453351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.817843, - 50.453351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.817843, - 50.453351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094046, - 49.477319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094046, - 49.477319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094046, - 49.477319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.115604, - 50.682161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.115604, - 50.682161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.115604, - 50.682161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.115604, - 50.682161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.959227, - 49.540126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.334355, - 50.997593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094046, - 49.477319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.39, - 43.67 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SARL LAFOURCADE ", - "owner:ref:FR:SIREN": "433220761", - "email": "sarl.lafourcade@orange.fr", - "phone": "0558436633", - "network": "SARL LAFOURCADE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993921, - 47.917131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143673, - 47.64323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.588925, - 47.650833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.781118, - 47.592013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.159957, - 47.62037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073609, - 47.423647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.365601, - 47.774631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.895957, - 47.709747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.174664, - 47.62926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "200078111", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Reseau_IRVE_SIED70", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988465421806449, - 45.71576869086339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "830836599", - "email": "info@electromaps.com", - "network": "A.L.R", - "ref": "41b21718-caa0-4a4e-9904-8c02f5ae1684", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3402467383073846, - 43.612262376081546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "799445309", - "email": "info@electromaps.com", - "network": "FRIENDLY AUBERGE", - "ref": "1fc222f1-5977-493d-a446-f33359543573", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1198560355938945, - 45.90210582751428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "523903433", - "email": "info@electromaps.com", - "network": "GARAGE FORRET", - "ref": "cc8997b4-a697-49c6-9dc4-9a3bbdca3a4e", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.135471415628564, - 44.079339763735184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCI LA COLLINE ", - "owner:ref:FR:SIREN": "333284743", - "email": "p.georges@groupe-ipa.com", - "phone": "0680462242", - "network": "SCI LA COLLINE", - "ref": "ccabc598-0b7e-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.135471415628564, - 44.079339763735184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCI LA COLLINE ", - "owner:ref:FR:SIREN": "333284743", - "email": "p.georges@groupe-ipa.com", - "phone": "0680462242", - "network": "SCI LA COLLINE", - "ref": "ccd2fa32-0b7e-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5139025, - 42.1140208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ATRACHATA", - "owner:ref:FR:SIREN": "752044479", - "email": "direction@adonis-aleria.com", - "phone": "0495570393", - "network": "ATRACHATA", - "ref": "non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5139025, - 42.1140208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ATRACHATA", - "owner:ref:FR:SIREN": "752044479", - "email": "direction@adonis-aleria.com", - "phone": "0495570393", - "network": "ATRACHATA", - "ref": "non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.136921215344072, - 41.50017664596053 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.136921215344072, - 41.50017664596053 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.136921215344072, - 41.50017664596053 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2023-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4524017, - 48.2368506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Gamba et Rota", - "owner:ref:FR:SIREN": "301213476", - "email": "stephane.bussiere@varennespie.fr", - "phone": "0689771003", - "network": "Gamba et Rota", - "ref": "FRWBCERCG0C21148", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5428274, - 50.7244213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MABORNEAUTO", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "CCFI", - "ref": "352fac34-e899-4a98-940b-6f3448f9436f", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0734169, - 48.5665745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3592, - 43.810977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3592, - 43.810977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.361448, - 43.812247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.361448, - 43.812247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.472599, - 48.084312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.361448, - 43.812247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3592, - 43.810977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.398142, - 43.754762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2339028, - 44.4425322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELEK BORDEAUX", - "owner:ref:FR:SIREN": "909177297", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "SARL PERROT", - "ref": "107a257c-77d6-4050-831c-1cfb9c1a231e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.985609, - 50.273541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Normatech ", - "owner:ref:FR:SIREN": "901360602", - "email": "contact@lodmi.com", - "phone": "0374830250", - "network": "Le boisle ", - "ref": "9a20d4d6-4f37-4557-be0f-81cae434db06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.985609, - 50.273541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Normatech ", - "owner:ref:FR:SIREN": "901360602", - "email": "contact@lodmi.com", - "phone": "0374830250", - "network": "LODMI", - "ref": "6a3786a6-dc93-4cb9-af0c-ed80139a1d37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8647466, - 45.644607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SNER RHONE-ALPES", - "owner:ref:FR:SIREN": "907612352", - "email": "b.pajou@sner-ra.fr", - "phone": "0472904173", - "network": "GMK Motorsport", - "ref": "UVG0D07005", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-23:59", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.61, - 45.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "333245181", - "email": "info@electromaps.com", - "phone": "+34 931 574 967 ", - "network": "Electromaps", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00 14:00-19:00, Su 9:00-12:30", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.72, - 43.36 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EIZMENDI TRAITEUR EVENEMENTS", - "owner:ref:FR:SIREN": "810682740", - "email": "contact@eizmenditraiteur.fr", - "phone": "0559292392", - "network": "EIZMENDI TRAITEUR EVENEMENTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4978048, - 44.8526111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "909177297", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "ELEN DISTRIBUTION", - "ref": "efeb05dd-38ba-4e6b-9661-32bef5c668c7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.073056, - 49.101681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Lacotte Pierre", - "owner:ref:FR:SIREN": "829417435", - "email": "Lacotte.p@gmail.com", - "phone": "0637334173", - "network": "Lacmeca", - "ref": "fbe29b94-6def-4919-b3a0-cfdc35fbdd9a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "tu-sa 08:30-12:00,tu-sa 14:00-18:00", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.380825275475741, - 44.288984939376896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAS DU TERME ", - "owner:ref:FR:SIREN": "418935680", - "email": "info@masduterme.com", - "phone": "0466245631", - "network": "MAS DU TERME ", - "ref": "29b639e2-1a77-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.380825275475741, - 44.288984939376896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAS DU TERME ", - "owner:ref:FR:SIREN": "418935680", - "email": "info@masduterme.com", - "phone": "0466245631", - "network": "MAS DU TERME ", - "ref": "29b639e2-1a77-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.380825275475741, - 44.288984939376896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAS DU TERME ", - "owner:ref:FR:SIREN": "418935680", - "email": "info@masduterme.com", - "phone": "0466245631", - "network": "MAS DU TERME ", - "ref": "29b639e2-1a77-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.073056, - 49.101681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Lacotte", - "owner:ref:FR:SIREN": "829417435", - "email": "lacotte.p@gmail.com", - "phone": "0637334173", - "network": "Lacmeca", - "ref": "9c0e8341-8c4a-4286-9eba-0985b15ffb0c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "tu-sa 09:00-12:00,14:00-18:00", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919325, - 47.641882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "259000966", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Réseau IRVE TE90", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.919329, - 47.641884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAEFELI", - "owner:ref:FR:SIREN": "259000966", - "email": "florent.mayery@citeos.com", - "phone": "0381215444", - "network": "Réseau IRVE TE90", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855131", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01672, - 43.6121039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01672, - 43.6121039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01672, - 43.6121039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01672, - 43.6121039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01672, - 43.6121039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855134", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855133", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855132", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01672, - 43.6121039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855130", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855129", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016626, - 43.611925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.39091984844480976, - 49.20079970020356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855128", - "email": "e-mobility@sap.com", - "phone": "0492286200", - "network": "SAP LABS FRANCE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.578864, - 45.704218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ANEBEY", - "owner:ref:FR:SIREN": "791318157", - "email": "contact@none.com", - "network": "PLATEAU_YZERON", - "ref": "YZERON", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-18:00", - "start_date": "2023-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3532908, - 46.65044958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.19848589, - 46.41558618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.19848589, - 46.41558618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16642619, - 46.78781078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16642619, - 46.78781078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.217966, - 46.962352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.217966, - 46.962352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.71177102, - 46.26240115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.71177102, - 46.26240115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3532908, - 46.65044958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677204, - 46.782245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677204, - 46.782245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0553447, - 46.3959629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.489271, - 46.3307391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.489271, - 46.3307391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.460921, - 46.32145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.460921, - 46.32145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.437953, - 46.303875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.437902, - 46.303843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.437902, - 46.303843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.463516, - 46.331921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-13:00, Mo-Fr 16:00-18:00", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.463516, - 46.331921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-13:00, Mo-Fr 16:00-18:00", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58792319, - 46.95686714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.58792319, - 46.95686714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.593893, - 46.944964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.593893, - 46.944964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0553447, - 46.3959629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0521514, - 46.3965368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11574545, - 46.29266393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0521514, - 46.3965368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.251641, - 46.648833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.251641, - 46.648833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2476458, - 46.6477507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2476458, - 46.6477507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.04221723, - 46.97521972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.04221723, - 46.97521972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.08293332, - 46.90095884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.08293332, - 46.90095884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.055385, - 46.881532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.055385, - 46.881532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34483773, - 46.25910761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34483773, - 46.25910761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11574545, - 46.29266393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.437953, - 46.303875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40244332, - 46.48549392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.248314, - 46.662615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5557142, - 46.3169129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.649319, - 46.770453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.148041, - 46.674512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.148041, - 46.674512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576905, - 46.633177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576905, - 46.633177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23694974, - 46.73014296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23694974, - 46.73014296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0111787, - 46.2654959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0111787, - 46.2654959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.178913, - 46.133704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.178913, - 46.133704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18853, - 47.01279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18853, - 47.01279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5557142, - 46.3169129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.748457, - 46.923557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074488, - 46.654902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.748457, - 46.923557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7384526, - 46.9219211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7384526, - 46.9219211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3234604, - 46.53364734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3234604, - 46.53364734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.144056, - 46.21338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.144056, - 46.21338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14223895, - 46.22412259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14223895, - 46.22412259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14375894, - 46.22190306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14375894, - 46.22190306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14632978, - 46.2246696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14632978, - 46.2246696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14574514, - 46.22041599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.649319, - 46.770453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074488, - 46.654902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.202642, - 46.412127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.029774, - 46.18141519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.248314, - 46.662615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.253067, - 46.664542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.253067, - 46.664542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373516, - 46.360322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373516, - 46.360322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06844854, - 46.1084164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.06844854, - 46.1084164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07567057, - 46.10834219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07567057, - 46.10834219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.358129, - 46.796145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.358129, - 46.796145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.357363, - 46.795306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.357363, - 46.795306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.029774, - 46.18141519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.589684, - 46.321324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2994545, - 46.3623019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.589684, - 46.321324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59730395, - 46.48260664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59730395, - 46.48260664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567109, - 46.779143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567109, - 46.779143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4166322, - 46.3885737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4166322, - 46.3885737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352278, - 46.830708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.352278, - 46.830708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.326927, - 46.87922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.326927, - 46.87922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296639, - 46.360436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296639, - 46.360436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2994545, - 46.3623019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14574514, - 46.22041599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14301159, - 46.2217749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14301159, - 46.2217749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4740947, - 46.3005485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.473538, - 46.839468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488702, - 46.842215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488702, - 46.842215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.494283, - 46.837561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2013-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.494283, - 46.837561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2013-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.495796, - 46.8509075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.495796, - 46.8509075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4742407, - 46.8505132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4742407, - 46.8505132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43454, - 46.77368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43454, - 46.77368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49691272, - 46.3056042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471974, - 46.184583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471974, - 46.184583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4740947, - 46.3005485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14501628, - 46.2223296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2232991, - 46.4082556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2232991, - 46.4082556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1419912, - 46.05641465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1419912, - 46.05641465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.45415867, - 46.98505968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.45415867, - 46.98505968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55511357, - 46.47397865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55511357, - 46.47397865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13181, - 46.82647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13181, - 46.82647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.142448, - 46.825164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.142448, - 46.825164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.414381, - 46.2865953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.414381, - 46.2865953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.473538, - 46.839468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49713, - 46.838103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49713, - 46.838103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416726, - 46.822523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.14501628, - 46.2223296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.15772504, - 46.2266485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.15772504, - 46.2266485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.05695068, - 46.49725688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.05695068, - 46.49725688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.589633, - 46.721541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.589633, - 46.721541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422692, - 46.336059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422692, - 46.336059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422689, - 46.335983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422689, - 46.335983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48823878, - 46.31882199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48823878, - 46.31882199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471157, - 46.315578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471157, - 46.315578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.467523, - 46.328049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.467523, - 46.328049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4604029, - 46.3288736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4604029, - 46.3288736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4074369, - 46.3157895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4074369, - 46.3157895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40244332, - 46.48549392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.670187, - 46.821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.670187, - 46.821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2014-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18543031, - 47.0539167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18543031, - 47.0539167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418693, - 46.82054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.202642, - 46.412127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.49691272, - 46.3056042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296768, - 46.572497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.012737, - 46.083781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2109496, - 46.9851529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2109496, - 46.9851529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.278269, - 46.976755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.278269, - 46.976755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244574, - 46.99604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244574, - 46.99604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2347598, - 46.991451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296768, - 46.572497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.012737, - 46.083781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.353478, - 46.045597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.216844, - 46.972578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.353478, - 46.045597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0255528, - 46.57567772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0255528, - 46.57567772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2887617, - 46.5165944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2887617, - 46.5165944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.394435, - 46.144166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.394435, - 46.144166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5380875, - 46.4077779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5380875, - 46.4077779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.216844, - 46.972578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2347598, - 46.991451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.216606, - 46.975545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.10559154, - 46.1315471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.216606, - 46.975545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.742817, - 46.989946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5216527, - 46.3730661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5216527, - 46.3730661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18987608, - 46.2061172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.18987608, - 46.2061172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232689, - 46.888542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232689, - 46.888542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.10559154, - 46.1315471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.742817, - 46.989946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418977, - 46.610536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.02581, - 46.719493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.02581, - 46.719493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.214995, - 46.978754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.214995, - 46.978754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2157898, - 46.9787321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2157898, - 46.9787321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1979541, - 46.981369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1979541, - 46.981369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "492041066", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418977, - 46.610536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Séolis", - "owner:ref:FR:SIREN": "200091049", - "email": "bo_dgic@seolis.net", - "phone": "0969397906", - "network": "AlterBase", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.371096600000001, - 48.15908049999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "2f68eef6-cc99-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9257621, - 43.5282927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "0eb30e38-cc9b-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64867, - 47.64051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BORNECO ", - "email": "freddy.borneco@gmail.com", - "phone": "669684978", - "network": "BORNECO", - "ref": "FR*BHM*ECAMPINGCLERIGOERVELINA*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64867, - 47.64051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BORNECO ", - "email": "freddy.borneco@gmail.com", - "phone": "669684978", - "network": "BORNECO", - "ref": "FR*BHM*ECAMPINGCLERIGOERVELINB*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9652648, - 50.2669787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317191617", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": " MAZDA MAUBEUGE- SARL FRANCO ", - "ref": "50785", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 08:00-17:30", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356166554456669, - 43.7920082634787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAS GALOFFRE", - "owner:ref:FR:SIREN": "329295786", - "email": "contact@mas-galoffre.com", - "phone": "0466381536", - "network": "MAS GALOFFRE", - "ref": "0b3e19ec-0aa7-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Th 08:00-18:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.356166554456669, - 43.7920082634787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAS GALOFFRE", - "owner:ref:FR:SIREN": "329295786", - "email": "contact@mas-galoffre.com", - "phone": "0466381536", - "network": "MAS GALOFFRE", - "ref": "55d15d82-0aa4-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Th 08:00-18:00", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.579135760951923, - 50.51658485952207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.579135760951923, - 50.51658485952207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5865782468226999, - 50.52023803636371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Semi Rapide", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5802344825222774, - 50.5237102932706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5802344825222774, - 50.5237102932706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5890656778496008, - 50.526149397749904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5890656778496008, - 50.526149397749904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5865497163965239, - 50.52024529238238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5865497163965239, - 50.52024529238238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59567398310793, - 50.51999281984215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Semi Rapide", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5957009765331387, - 50.52003488743544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5957009765331387, - 50.52003488743544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "528932627", - "email": "advenir@freshmile.com", - "phone": "03 88 68 84 58 ", - "network": "Touquet Normal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.143766265497639, - 43.3292004491334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "320342975", - "email": "ismael@electromaps.com", - "phone": "34 931 574 967 ", - "network": "SAS La Tuiliere", - "ref": "9d048374-0445-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.987552127378094, - 43.442782142736384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "213105695", - "email": "support@freshmile.com", - "phone": "03 68 78 14 35", - "network": "Mairie Vaudreuille ", - "ref": "84743104-0456-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4524017, - 48.2368506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Gamba et Rota", - "owner:ref:FR:SIREN": "301213476", - "email": "stephane.bussiere@varennespie.fr", - "phone": "0689771003", - "network": "Gamba et Rota", - "ref": "FRWBCERCG0C2115C", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1348357, - 48.3005817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Festilight", - "owner:ref:FR:SIREN": "301213476", - "email": "didier.maroilley@festilight.fr", - "phone": "0325832300", - "network": "Festilight", - "ref": "FRWBCERJG0C23026", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1348357, - 48.3005817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Festilight", - "owner:ref:FR:SIREN": "301213476", - "email": "didier.maroilley@festilight.fr", - "phone": "0325832300", - "network": "Festilight", - "ref": "FRWBCERJG0C2303B", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1348357, - 48.3005817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Festilight", - "owner:ref:FR:SIREN": "301213476", - "email": "didier.maroilley@festilight.fr", - "phone": "0325832300", - "network": "Festilight", - "ref": "FRWBCERCG0C210E4", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1348357, - 48.3005817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Festilight", - "owner:ref:FR:SIREN": "301213476", - "email": "didier.maroilley@festilight.fr", - "phone": "0325832300", - "network": "Festilight", - "ref": "FRWBCERCG0C2115F", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1348357, - 48.3005817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Festilight", - "owner:ref:FR:SIREN": "301213476", - "email": "didier.maroilley@festilight.fr", - "phone": "0325832300", - "network": "Festilight", - "ref": "FRWBCERCG0C2117D", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.954054532862406, - 47.2166457444792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Est Auto", - "owner:ref:FR:SIREN": "527529119", - "email": "cjarriaux@amplitude-auto.com", - "phone": "0381477878", - "network": "Ford", - "ref": "FRWBCEHGG0C03009", - "socket:type2_combo": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0458858, - 48.7978439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GROUPE COURTOIS SOCOHY", - "owner:ref:FR:SIREN": "840017446", - "email": "dimitri.courtois@groupe-courtois.fr", - "phone": "0776075550", - "network": "Socohy Hyundai Montigny", - "ref": "NVG0B46012", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-19:00", - "start_date": "2023-06-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9321064, - 48.7513226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GROUPE COURTOIS SOCOHY", - "owner:ref:FR:SIREN": "840017446", - "email": "dimitri.courtois@groupe-courtois.fr>", - "phone": "0776075550", - "network": "Socohy Hyundai Coignière", - "ref": "NVG0B46002", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-19:00", - "start_date": "2023-06-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.217619, - 50.566184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "freshmile", - "owner:ref:FR:SIREN": "215901687", - "email": "exploitation@freshmile.com", - "phone": "0391830700", - "network": "FRESHMILE", - "ref": "FR*FR1*EVLH*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.345135599999999, - 41.69983680000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "e09c9636-039a-11ee-be56-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4743602103553713, - 47.51236168509763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "449926302", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "RURAL GARDEN", - "ref": "E170549", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Sa 09:00-19:30", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95, - 43.47 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RONALEV", - "owner:ref:FR:SIREN": "417948882", - "email": "leclercq.ronalev@orange.fr", - "phone": "0610013878", - "network": "Borne de recharge RONALEV", - "ref": "589ab6df-40f9-4200-84ec-301b6c4e1faa", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4218187, - 49.3959347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Midas Fitz-James\t", - "email": "tech@eoliberty.com", - "network": "Réseau de recharge Charge-in", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4218187, - 49.3959347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Midas Fitz-James", - "email": "tech@eoliberty.com", - "network": "Réseau de recharge Charge-in", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7471049, - 45.4137074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6481841c9c07be00ded7039d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1967988, - 44.4381511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6460e7e38a20f02768a74212", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1967988, - 44.4381511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6460e7e38a20f02768a74212", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758025, - 42.484241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6492bf327afd87059ff1b834", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758025, - 42.484241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6492bf327afd87059ff1b834", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758025, - 42.484241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6492bf327afd87059ff1b834", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1967988, - 44.4381511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6460e7e38a20f02768a74212", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6475957aef82e9f9494a574a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0311097, - 44.0911453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6460e6968a20f02768a741ff", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64a523703d8a3b5a632cbf19", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64a523703d8a3b5a632cbf19", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64a523703d8a3b5a632cbf19", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5677804, - 43.2866873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b47a9c07be00ded73694", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.372115, - 46.12509099999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64807c519c07be00ded6ea17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3670389, - 46.10760080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64807c069c07be00ded6ea12", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64a523703d8a3b5a632cbf19", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4192407, - 44.4744571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6460e2eb8a20f02768a741d4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64a523703d8a3b5a632cbf19", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3670389, - 46.10760080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64807c069c07be00ded6ea12", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3670389, - 46.10760080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64807c069c07be00ded6ea12", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5955586, - 45.2732968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "64807c309c07be00ded6ea14", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79973, - 43.2076102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b0e79c07be00ded73672", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.79973, - 43.2076102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0972114955", - "network": "RechargerMonAuto", - "ref": "6486b0e79c07be00ded73672", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1178263, - 45.6494913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Camping le Puits de l'Auture", - "email": "tech@eoliberty.com", - "network": "Réseau de recharge Charge-in", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1178263, - 45.6494913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Camping le Puits de l'Auture", - "email": "tech@eoliberty.com", - "network": "Réseau de recharge Charge-in", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82, - 45.33 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MONTA", - "owner:ref:FR:SIREN": "800654774", - "email": "amgh@monta.com", - "phone": "+33 662 64 36 90", - "network": "MONTA", - "ref": "9a1318f7-e55f-4811-8e66-a6dfd17a0121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.853408088061449, - 43.954525553229516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "480169119", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", - "ref": "E175271", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.853408088061449, - 43.954525553229516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "480169119", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", - "ref": "E175270", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52710519266027, - 48.832825866061164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "785665126", - "email": "web@freshmile.com", - "phone": "369246732", - "network": "Freshmile", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.16, - 45.8 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ART DECO FINITION", - "owner:ref:FR:SIREN": "478846231", - "email": "silva.adf@orange.fr", - "network": "ART DECO FINITION", - "ref": "7ffd26f8-4030-45ea-be1b-8b9322e17e2d", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756453", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "756453", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.780446, - 43.9585575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "phone": "669684978", - "network": "BornEco", - "ref": "26596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.136254786296182, - 43.54064693288783 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "4db960aa-06c5-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8846990973662954, - 44.107170327068204 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "4e026926-06c5-11ee-be56-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06", - "start_date": "2020-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.206137457654465, - 43.745680776707296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IFERRO", - "owner:ref:FR:SIREN": "843380148", - "email": "nicolas.sebert@iferro.fr", - "phone": "06 64 22 11 43", - "network": "IFERRO", - "ref": "39513d7c-0472-11ee-be56-0242ac120002", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2585815, - 45.90524019999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "332944032", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Dolus-d'Oléron", - "ref": "E174559", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Di 08:30-19:30", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2585815, - 45.90524019999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "332944032", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Dolus-d'Oléron", - "ref": "E153280", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Di 08:30-19:30", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2585815, - 45.90524019999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "332944032", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Dolus-d'Oléron ", - "ref": "E153279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Di 08:30-19:30", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2585815, - 45.90524019999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "332944032", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Intermarché - Dolus-d'Oléron ", - "ref": "E174558", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "yes", - "opening_hours": "Lu- Di 08:30-19:30", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08, - 43.68 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sud Camargue", - "owner:ref:FR:SIREN": "802393371", - "email": "info@sudcamargue.fr", - "phone": "0689198608", - "network": "Borne de recharge Sud Camargue", - "ref": "f0563af9-5bb6-48ef-9982-2d8a8b00639c", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23, - 49.11 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "314481250", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWFF9DHV9P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23, - 49.11 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "314481250", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWFF9DHV9P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9863507, - 50.4699234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "OMEO", - "ref": "b8e7213c-daf2-46d0-8fec-82917f4d1e1a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6075326, - 50.6962979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "desenfans boulogne", - "ref": "0801cdce-0892-4cf9-9a9c-9a95b6322037", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3670389, - 46.10760080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64807c069c07be00ded6ea12", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.372115, - 46.12509099999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64807c519c07be00ded6ea17", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6760356, - 46.441643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64763927ef82e9f9494a5e0e", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6760356, - 46.441643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64763927ef82e9f9494a5e0e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6760356, - 46.441643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64763927ef82e9f9494a5e0e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5955586, - 45.2732968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64807c309c07be00ded6ea14", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0311097, - 44.0911453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "6460e6968a20f02768a741ff", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3670389, - 46.10760080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64807c069c07be00ded6ea12", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3670389, - 46.10760080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "64807c069c07be00ded6ea12", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057033999999999, - 45.84568999999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "6475957aef82e9f9494a574a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4192407, - 44.4744571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "RechargerMonAuto", - "email": "contact@rechargermonauto.com", - "phone": "0665050816", - "network": "RechargerMonAuto", - "ref": "6460e2eb8a20f02768a741d4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.62602, - 47.96226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "97a73804-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.792899, - 48.034992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9f856230-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.772764, - 47.968284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "a01624a0-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.736547, - 47.918313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9fd0f8f8-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786245, - 47.952592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "a169a05c-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.774432, - 47.968048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "a05bc5e6-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.709255, - 47.99084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "a09b9afe-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.618866, - 47.991795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9e89cd76-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.631166, - 47.940851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "954250ee-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.686007, - 47.945937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9ecf01fc-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.730546, - 48.012275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9f13aabe-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.714751, - 47.989077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9e46dd7c-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72942, - 48.000205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9cd734f0-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697983, - 48.045053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9e0235dc-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.740797, - 48.043351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "a250ea3e-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.729438, - 48.000162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9c6588aa-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672061, - 48.017411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "a20a11fe-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.715104, - 48.020196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9d2d3774-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.736391, - 47.930405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9dbac706-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.729456, - 48.000117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-totem", - "owner:ref:FR:SIREN": "244500203", - "email": "contact@e-totem.fr", - "phone": "04 28 04 42 05", - "network": "E-totem", - "ref": "9d77585e-c89a-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143853, - 49.19134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133115, - 50.740027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12795, - 48.693561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12795, - 48.693561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12795, - 48.693561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12795, - 48.693561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12795, - 48.693561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143853, - 49.19134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143853, - 49.19134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143853, - 49.19134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143853, - 49.19134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109315, - 49.081079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109315, - 49.081079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109315, - 49.081079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109315, - 49.081079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409276, - 49.141723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409276, - 49.141723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409276, - 49.141723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109315, - 49.081079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02371, - 49.288753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409276, - 49.141723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.988355, - 50.413551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222288, - 50.68201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.478509, - 50.381036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.478509, - 50.381036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.478509, - 50.381036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.478509, - 50.381036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.478509, - 50.381036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08386, - 50.58572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08386, - 50.58572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08386, - 50.58572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08386, - 50.58572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08386, - 50.58572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.988355, - 50.413551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.988355, - 50.413551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.988355, - 50.413551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.288004, - 48.172688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222288, - 50.68201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.288004, - 48.172688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.288004, - 48.172688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.602383, - 50.405159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.602383, - 50.405159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.602383, - 50.405159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.602383, - 50.405159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.602383, - 50.405159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11163, - 49.4094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11163, - 49.4094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11163, - 49.4094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11163, - 49.4094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11163, - 49.4094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647624, - 47.348542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647624, - 47.348542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222288, - 50.68201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222288, - 50.68201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409276, - 49.141723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666764, - 50.730562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.965283, - 50.63337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.965283, - 50.63337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.965283, - 50.63337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.965283, - 50.63337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.965283, - 50.63337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.055979, - 49.213929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.055979, - 49.213929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.055979, - 49.213929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.055979, - 49.213929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.055979, - 49.213929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666764, - 50.730562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666764, - 50.730562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666764, - 50.730562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.666764, - 50.730562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.702759, - 50.308256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222288, - 50.68201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.702759, - 50.308256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.702759, - 50.308256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.702759, - 50.308256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.702759, - 50.308256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77271, - 50.422518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77271, - 50.422518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77271, - 50.422518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77271, - 50.422518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77271, - 50.422518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129024, - 50.615268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129024, - 50.615268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129024, - 50.615268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129024, - 50.615268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.129024, - 50.615268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647624, - 47.348542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647624, - 47.348542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.647624, - 47.348542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.101673, - 47.311365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.388127, - 47.771294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.00296, - 50.613957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.00296, - 50.613957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.00296, - 50.613957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.387607, - 47.822904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.387607, - 47.822904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.387607, - 47.822904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.812512, - 47.500958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.812512, - 47.500958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.812512, - 47.500958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.978945, - 49.570806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.978945, - 49.570806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.978945, - 49.570806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.101673, - 47.311365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.101673, - 47.311365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.511242, - 50.333162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02371, - 49.288753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02371, - 49.288753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02371, - 49.288753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02371, - 49.288753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133115, - 50.740027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221258, - 50.759564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221258, - 50.759564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221258, - 50.759564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462091, - 48.280718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462091, - 48.280718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462091, - 48.280718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.099427, - 50.34138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.099427, - 50.34138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.099427, - 50.34138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.388127, - 47.771294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.388127, - 47.771294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.388127, - 47.771294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.388127, - 47.771294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.511242, - 50.333162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.511242, - 50.333162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993622, - 47.283904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993622, - 47.283904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993622, - 47.283904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.629207, - 50.524317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.629207, - 50.524317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.629207, - 50.524317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255056, - 50.182967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255056, - 50.182967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255056, - 50.182967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.426173, - 50.129276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.426173, - 50.129276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.426173, - 50.129276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363111, - 48.106855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363111, - 48.106855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363111, - 48.106855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.019881, - 47.283199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.019881, - 47.283199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.019881, - 47.283199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.382405, - 51.017619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.382405, - 51.017619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.382405, - 51.017619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.047322, - 47.357664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.047322, - 47.357664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.047322, - 47.357664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.878767, - 49.173237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.878767, - 49.173237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.878767, - 49.173237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133115, - 50.740027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.988355, - 50.413551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133115, - 50.740027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.472424, - 50.379911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.133115, - 50.740027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.472424, - 50.379911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.613217, - 50.485562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.472424, - 50.379911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.472424, - 50.379911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935342, - 48.293876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935342, - 48.293876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.935342, - 48.293876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.921037, - 47.643211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.921037, - 47.643211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.472424, - 50.379911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.921037, - 47.643211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "R3", - "owner:ref:FR:SIREN": "902726488", - "email": "exploitation@r3-charge.fr", - "phone": "321509292", - "network": "R3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84, - 45.79 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "a7ce55c2-9856-4232-8cdc-fdd006f6c4d5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.203654999999999, - 45.8936172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "INOUID", - "owner:ref:FR:SIREN": "330465550", - "email": "Contact@inouid.com", - "phone": "0682800152", - "network": "ALOUISFACEINTACPUBLIC", - "ref": "EFEC9F1798CE4367B63FDE0635E888D2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2002-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.605048, - 49.644253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVERON", - "owner:ref:FR:SIREN": "903227221", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "EVERON", - "ref": "EVB-P2011337", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04449, - 49.114638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "424397297", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "AUBERGE SAINT WALFRID", - "ref": "635a8195-f947-4584-b418-4844f6f79fc9", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.083001, - 49.11801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "483048492", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "TV MOSAIK CRISTAL", - "ref": "ec4b9d5d-0bf2-4aa4-b255-72308a3d4da4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.075081, - 49.114571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "420326597", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "FOURNIER GUY", - "ref": "1dba36be-0c2e-4786-b800-0631f46fadb2", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8678295, - 50.0958814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.28364, - 46.87354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8678295, - 50.0958814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8678295, - 50.0958814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8678295, - 50.0958814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8678295, - 50.0958814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8678295, - 50.0958814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39149, - 43.56942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39149, - 43.56942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39149, - 43.56942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39149, - 43.56942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39149, - 43.56942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39149, - 43.56942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55014, - 43.48583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "GreenToWheel", - "socket:typee": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29015, - 46.87914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0183, - 46.45317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.17878, - 45.69066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.656658, - 47.376567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.18157, - 45.692753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424006, - 45.44038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.557195, - 47.583132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40005, - 43.693127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.277484, - 45.836617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.361258, - 43.811153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48157, - 43.62854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.889034, - 43.58858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.022089, - 47.284263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.344864, - 47.776331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.73321, - 43.42367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87942, - 44.90681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47735, - 43.55739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417452, - 43.532883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834461, - 43.927927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45281, - 43.64246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green To Wheel", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.58038, - 48.53897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Allego", - "owner:ref:FR:SIREN": "842718512", - "email": "info.allego.france@allego.eu", - "phone": "01 40 70 06 17", - "network": "ALLEGO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0151949687525528, - 49.491605515295085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVERON", - "owner:ref:FR:SIREN": "310818000", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "point p", - "ref": "EVB-P2211454", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065306, - 44.116006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "897811865", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "electromaps", - "ref": "FR*MAP*P000000006985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Su 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065306, - 44.116006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "897811865", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "electromaps", - "ref": "FR*MAP*P000000006985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Su 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065306, - 44.116006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "897811865", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "electromaps", - "ref": "FR*MAP*P000000006985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Su 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065306, - 44.116006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "897811865", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "electromaps", - "ref": "FR*MAP*P000000006985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Su 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4471530662225864, - 43.32939290277349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE", - "owner:ref:FR:SIREN": "493964464", - "email": "CONTACT@AUTORECHARGE.FR", - "phone": "0970755400", - "network": "Réseau de recharge CENTRAKOR", - "ref": "a013cc8c-e4fe-4b33-b189-7b94a2eb58ea", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.294283, - 48.072785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MODULO", - "owner:ref:FR:SIREN": "256802745", - "email": "jferchaud@modulo-energies.fr", - "phone": "0247316868", - "network": "MODULO", - "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04, - 44.08 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Leclerc Millau", - "owner:ref:FR:SIREN": "341760148", - "email": "thomas.millerand@millau.leclerc", - "phone": "0565590103", - "network": "Leclerc Millau", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8, - 44.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.876855607462602, - 48.07256195733498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66386351", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8801712406498, - 48.37587100374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66430152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8801712406498, - 48.37587100374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66430152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9645139789942, - 48.289964210164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66546854", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.876855607462602, - 48.07256195733498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66386351", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8801260998633, - 48.376012836572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66430152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8801260998633, - 48.376012836572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66430152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9643743348954, - 48.289919288542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66545854", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9643743348954, - 48.289919288542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66545854", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965496889543137, - 48.29004613244174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66544154", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9630213737653, - 48.28993400965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66546754", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9630213737653, - 48.28993400965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66546754", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.965496889543137, - 48.29004613244174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ChargePoint", - "owner:ref:FR:SIREN": "200096824", - "email": "support.eu@chargepoint.com", - "phone": "0185650449", - "network": "HOPITAUX MASSIF DES VOSGES", - "ref": "FRCPIE66544154", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.212029, - 44.196621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "312707391", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "electromaps", - "ref": "f588e6140fcfab03", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.212029, - 44.196621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "electromaps", - "owner:ref:FR:SIREN": "312707391", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "electromaps", - "ref": "c45b7fe23fd6020a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Th 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0855646, - 49.2371711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "479337107", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA - REIMS", - "ref": "88249", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-19:00", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0855646, - 49.2371711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "479337107", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "KIA - REIMS", - "ref": "88250", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-19:00", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014273, - 50.615449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1) ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014273, - 50.615449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.014273, - 50.615449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", - "owner:ref:FR:SIREN": "783669831", - "email": "contact@electricite-loos.fr", - "phone": "320075634", - "network": "RME Loos (FR-FR1)", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.395016, - 50.6610416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AREA Tech", - "email": "contact@area-tech.fr", - "network": "AREA Tech", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.395016, - 50.6610416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AREA Tech", - "email": "contact@area-tech.fr", - "network": "AREA Tech", - "socket:type2_combo": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.395016, - 50.6610416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AREA Tech", - "email": "contact@area-tech.fr", - "network": "AREA Tech", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.395016, - 50.6610416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AREA Tech", - "email": "contact@area-tech.fr", - "network": "AREA Tech", - "socket:type2_combo": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-23:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44, - 43.33 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "0b9c7838-1025-4387-ba85-ddbe5c7692b4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.466439, - 48.594319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Vincent", - "owner:ref:FR:SIREN": "901527333", - "email": "tat.vincent@gmail.com", - "phone": "0628061367", - "network": "Le Clos St. Gilles", - "ref": "12115377-e75a-4816-b2d2-e530a33ebc80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr 08:00-12:00,mo-fr 13:30-18:00", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.824020549638603, - 43.144379705624395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "97a6b2ba-a4c3-4c1a-bd28-1536ae106c14", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.84, - 43.14 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "a78a5c9f-1088-4e10-92a6-da3eb1b73a30", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83, - 43.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "a193b38a-4d29-4a6d-91dc-b2707112713b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02, - 44.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "8bcfc19a-0441-4f6d-87e9-a424b89e4cb0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4541187, - 49.0202152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma borne auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "DESENFANS GOUSAINVILLE", - "ref": "506657f4-f858-4fc7-b773-275fbf5bbcd4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.504764, - 48.903776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Vigot", - "owner:ref:FR:SIREN": "811743335", - "email": "davidvigot@sfr.fr", - "phone": "0684970823", - "network": "SARL Vigot", - "ref": "ac9b0935-ed7d-4713-8a18-075922e7a89e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59176364, - 46.47844882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "848969044", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "FDG Automobiles", - "ref": "128990", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:30", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59176364, - 46.47844882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "848969044", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "FDG Automobiles", - "ref": "128991", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:30", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.846839699999999, - 45.7618696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "INOUID", - "owner:ref:FR:SIREN": "317802106", - "email": "Contact@inouid.com", - "phone": "0682800152", - "network": "HCrequipublic", - "ref": "fr-ise-e-inouid-crequi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2113974, - 44.9769783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma borne auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "mon espace carrelage", - "ref": "2db6221b-bd48-4868-ad35-90071ac9de1a", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84, - 45.79 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Pascal Chene", - "owner:ref:FR:SIREN": "539474817", - "email": "garage.chene@gmail.com", - "network": "GARAGE CHENE -TOTAL ENERGIES - CITROEN", - "ref": "EVB-P212223833", - "socket:type2": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-02-02", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1, - 47.27 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEDIODENT", - "owner:ref:FR:SIREN": "898168273", - "email": "mediodent@gmail.com", - "phone": "03 81 60 06 00", - "network": "MEDIODENT", - "ref": "8ef7ac44-2295-427b-8f6c-589c0e47c43a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9849957, - 45.7312637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "819452657", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NOMADE BREWERY", - "ref": "122021", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Tue-Fri 12:00-22:00,Sat 16:00-23:00", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.38, - 46.75 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "5a261145-4bb3-48f4-a72d-699958c5c975", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.93, - 47.24 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GARAGE HENRY", - "owner:ref:FR:SIREN": "898168273", - "email": "garage.henry25@orange.fr", - "phone": "0381590075", - "network": "GARAGE HENRY", - "ref": "0ba8ed7c-43f6-4b51-9b36-66b094607c09", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26, - 44.5 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "904273802", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "Domaine de Fompeyre", - "ref": "87831698952267f0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26, - 44.5 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "904273802", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "Domaine de Fompeyre", - "ref": "961a816c0a70acf2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26, - 44.5 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "904273802", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "Domaine de Fompeyre", - "ref": "74a79fa3d39ca269", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.26, - 44.5 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "904273802", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "Domaine de Fompeyre", - "ref": "7defedad9ee67c87", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.63, - 44.82 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "904273802", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "Carrefour Contact ", - "ref": "29ebe92a3906ba65", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.63, - 44.82 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "904273802", - "email": "support@electromaps.com", - "phone": "+33 1 76 46 09 15", - "network": "Carrefour Contact", - "ref": "4b09727283003ba2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5582183, - 51.0072064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "mairie de ghyvelde", - "ref": "0d032d37-2265-40d7-b4ee-51ee1fe603b0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3126718, - 46.585065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*A*1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3126718, - 46.585065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*A*1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3126718, - 46.585065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*A*1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3126718, - 46.585065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*A*1", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3126718, - 46.585065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*A*1", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31, - 46.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*B*1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31, - 46.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*B*1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31, - 46.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*B*1", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31, - 46.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*B*1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.31, - 46.59 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "QoWatt", - "owner:ref:FR:SIREN": "904074713", - "email": "contact@qowatt.com", - "phone": "0765762350", - "network": "QoWatt", - "ref": "FR*QWT*S86027*B*1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2943536, - 49.1928486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Guerin", - "owner:ref:FR:SIREN": "512913518", - "email": "yannick@2ed.fr", - "phone": "0643099223", - "network": "2ED", - "ref": "48db1801-1114-4055-a221-75d0e5262a2e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr 08:00-12:00,mo-fr 13:30-18:00", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4, - 45.44 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "perrin", - "owner:ref:FR:SIREN": "347412850", - "email": "mcelette@lumilec-electricité.fr", - "phone": "0610284454", - "network": "IBIS CHATEAUCREUX SAINT ETIENNE", - "ref": "20e6d906-5c2d-11ed-9b6a-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38, - 45.47 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "perrin", - "owner:ref:FR:SIREN": "330590449", - "email": "mcelette@lumilec-electricité.fr", - "phone": "0610284454", - "network": "IBIS HOTEL LA TERRAS", - "ref": "8e30cdf7-c9a7-48a3-a51b-9360b5620719", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4799048, - 43.89146969999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "916dad76-9019-48d1-a94b-cf77f98e7d1e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8283161, - 46.4675537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Cheffois", - "ref": "60014", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-18:00,Sun 09:00-18:00", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8283161, - 46.4675537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota - Cheffois", - "ref": "60015", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-sat 08:00-18:00,Sun 09:00-18:00", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304633617401123, - 50.90874481201172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BORNECO", - "owner:ref:FR:SIREN": "445403512", - "email": "freddy.borneco@gmail.com", - "phone": "0669684978", - "network": "borneco", - "ref": "fr*bhm bubble ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8718, - 48.07067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "L'Hotelloise Hotel des Bains", - "owner:ref:FR:SIREN": "508150463", - "email": "bains@wanadoo.fr", - "network": "L'HOSTELLOISE HOTEL DES BAINS", - "ref": "755c6ec8-a6de-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9342, - 48.70158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ROBOTIC COVER CONCEPT", - "owner:ref:FR:SIREN": "420783946", - "email": "robotic@rcc.fr", - "network": "ROBOTIC COVER CONCEPT", - "ref": "e81469d6-a6dc-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.746956, - 49.495106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EPGML", - "owner:ref:FR:SIREN": "265401422", - "email": "epgml@epgmllongwy.fr", - "network": "EPGML", - "ref": "4accd728-a6da-11ed-afa1-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3841132506467066, - 48.90602152741062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE", - "owner:ref:FR:SIREN": "672009628", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "Infrastructures de recharge pour véhicules électriques (organisation AUTORECHARGE)", - "ref": "35bb1501-eefa-4449-83d4-b795f4bd4880", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012604743905726, - 43.57438496198235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TANAY Electricité", - "owner:ref:FR:SIREN": "421334566", - "email": "tanayelectricite@hotmail.com", - "phone": "0600000000", - "network": "Riviera Car Center", - "ref": "RCC-CAN-01-DC-PKGCLIENT", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.290915231602582, - 43.70607256724716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TANAY Electricité", - "owner:ref:FR:SIREN": "421334566", - "email": "tanayelectricite@hotmail.com", - "phone": "0600000000", - "network": "Riviera Car Center", - "ref": "RCC-NICE-01-DC-PKGCLIENT", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012604743905726, - 43.57438496198235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TANAY Electricité", - "owner:ref:FR:SIREN": "421334566", - "email": "tanayelectricite@hotmail.com", - "phone": "0600000000", - "network": "Riviera Car Center", - "ref": "RCC-CAN-03-DC-PKGCLIENT-SAV", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3812921, - 46.3406381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "LES GARAGES CHAIGNEAU - CHAURAY ", - "ref": "143108", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-18:00,Sat 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3812921, - 46.3406381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "LES GARAGES CHAIGNEAU - CHAURAY", - "ref": "143107", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 07:45-18:00,Sat 09:00-18:00", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.25, - 47.29 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "arteco44", - "owner:ref:FR:SIREN": "842477895", - "email": "meuzenat@arteco.fr", - "phone": "0240193230", - "network": "recharge arteco", - "ref": "c635b39a-6507-11ed-9022-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 9:00-12:00,Mo-Fr 14:00-17:30", - "start_date": "2022-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96, - 43.54 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Le Grand Large", - "owner:ref:FR:SIREN": "429186844", - "email": "girardhotel@gmail.com", - "phone": "0616517174", - "network": "Station de recharge Le grand large", - "ref": "569d74e7-5e96-4bcd-a038-e2d5e855a9fe", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1297, - 48.82966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NN4XSWH5DX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1297, - 48.82966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NN4XSWH5DX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1259, - 48.82597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EKGLSXWYLC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1259, - 48.82597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EKGLSXWYLC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1297, - 48.82966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NN4XSWH5DX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1259, - 48.82597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EKGLSXWYLC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1259, - 48.82597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EKGLSXWYLC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1297, - 48.82966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NN4XSWH5DX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1259, - 48.82597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EKGLSXWYLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1297, - 48.82966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NN4XSWH5DX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1259, - 48.82597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EKGLSXWYLC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1297, - 48.82966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NN4XSWH5DX", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.33396657, - 47.27512821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UVA1GK3BEZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35827385, - 47.29464201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SQAXHVYUL0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39379, - 47.287674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "GYS7KX8RYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.390635, - 47.288267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JQ63UNHXMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.390635, - 47.288267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JQ63UNHXMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39379, - 47.287674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "GYS7KX8RYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39379, - 47.287674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "GYS7KX8RYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.390635, - 47.288267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JQ63UNHXMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.378618, - 47.28234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EH4SWQBAHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.355691, - 47.280084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OH8U5KZYGR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.355691, - 47.280084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OH8U5KZYGR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.378618, - 47.28234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EH4SWQBAHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.33396657, - 47.27512821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UVA1GK3BEZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.343717, - 47.271461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HTBGD246VP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.343717, - 47.271461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HTBGD246VP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.33396657, - 47.27512821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UVA1GK3BEZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.390635, - 47.288267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JQ63UNHXMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35827385, - 47.29464201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SQAXHVYUL0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35827385, - 47.29464201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SQAXHVYUL0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.406672, - 47.281257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SSHO5RSRMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.406672, - 47.281257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SSHO5RSRMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.406672, - 47.281257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SSHO5RSRMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.394561, - 47.282039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "PD9O4ON1F6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.406672, - 47.281257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SSHO5RSRMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.406672, - 47.281257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SSHO5RSRMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41180177, - 47.28378784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MLWOEU75YT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41180177, - 47.28378784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MLWOEU75YT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.406672, - 47.281257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SSHO5RSRMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41180177, - 47.28378784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MLWOEU75YT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41180177, - 47.28378784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MLWOEU75YT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.33396657, - 47.27512821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UVA1GK3BEZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35827385, - 47.29464201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SQAXHVYUL0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.848091, - 45.628359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IMSALVK01H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.355691, - 47.280084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OH8U5KZYGR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.848091, - 45.628359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IMSALVK01H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.848091, - 45.628359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IMSALVK01H", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.343717, - 47.271461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HTBGD246VP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41498069, - 47.27943453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "Y3VAL8QRMQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.343717, - 47.271461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HTBGD246VP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41498069, - 47.27943453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "Y3VAL8QRMQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.343717, - 47.271461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HTBGD246VP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.33396657, - 47.27512821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UVA1GK3BEZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.390635, - 47.288267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JQ63UNHXMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.33396657, - 47.27512821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UVA1GK3BEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.343717, - 47.271461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HTBGD246VP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39379, - 47.287674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "GYS7KX8RYW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41180177, - 47.28378784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MLWOEU75YT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.355691, - 47.280084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OH8U5KZYGR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.378618, - 47.28234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EH4SWQBAHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39379, - 47.287674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "GYS7KX8RYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.390635, - 47.288267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JQ63UNHXMO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35827385, - 47.29464201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SQAXHVYUL0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.378618, - 47.28234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EH4SWQBAHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41498069, - 47.27943453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "Y3VAL8QRMQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35827385, - 47.29464201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SQAXHVYUL0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.355691, - 47.280084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OH8U5KZYGR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41498069, - 47.27943453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "Y3VAL8QRMQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.378618, - 47.28234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EH4SWQBAHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.378618, - 47.28234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "EH4SWQBAHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.39379, - 47.287674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "GYS7KX8RYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.355691, - 47.280084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OH8U5KZYGR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41498069, - 47.27943453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "Y3VAL8QRMQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41498069, - 47.27943453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "Y3VAL8QRMQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.396071, - 47.290493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B4QYBOUPMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.394561, - 47.282039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "PD9O4ON1F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.394561, - 47.282039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "PD9O4ON1F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06127559, - 44.54181494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SPNW8OHGXT", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06130988, - 44.54188269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IGJVLDRJPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06130988, - 44.54188269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IGJVLDRJPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06130988, - 44.54188269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IGJVLDRJPL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05445737, - 44.55803133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FQD6TNYY1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06130988, - 44.54188269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IGJVLDRJPL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05445737, - 44.55803133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FQD6TNYY1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05445737, - 44.55803133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FQD6TNYY1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06127559, - 44.54181494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SPNW8OHGXT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06127559, - 44.54181494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "SPNW8OHGXT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.41180177, - 47.28378784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MLWOEU75YT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10233384, - 44.56943231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FJZP5RGIWR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033491, - 47.905369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KR0Q8THZQY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10233384, - 44.56943231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FJZP5RGIWR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.425071, - 48.204234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "M676DRCSZV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42217, - 48.203893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MCGNQKQFJH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42217, - 48.203893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MCGNQKQFJH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.422346, - 48.183955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B8VYNNI4EK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.425071, - 48.204234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "M676DRCSZV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.422346, - 48.183955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B8VYNNI4EK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.441108, - 48.198048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UTCAFKUEJR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.441108, - 48.198048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UTCAFKUEJR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.441108, - 48.198048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UTCAFKUEJR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05445737, - 44.55803133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FQD6TNYY1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189956, - 49.015557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AAOHVNYG1P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12831, - 48.81617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "DCQ0LAWQZE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.610229, - 49.10076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UWBEJENZM4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.645486, - 44.901527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "BNKAZ43L8B", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.645486, - 44.901527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "BNKAZ43L8B", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.645486, - 44.901527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "BNKAZ43L8B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.589814, - 50.481269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "ADPWEZEQNB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6274056, - 50.50043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NIWYNHGWZQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6274056, - 50.50043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "NIWYNHGWZQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.589814, - 50.481269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "ADPWEZEQNB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.623218, - 50.48689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HRHSOKTQFF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.623218, - 50.48689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HRHSOKTQFF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.623218, - 50.48689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "HRHSOKTQFF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.610229, - 49.10076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UWBEJENZM4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189956, - 49.015557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AAOHVNYG1P", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033491, - 47.905369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KR0Q8THZQY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033491, - 47.905369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KR0Q8THZQY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033491, - 47.905369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KR0Q8THZQY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189956, - 49.015557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AAOHVNYG1P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.610229, - 49.10076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "UWBEJENZM4", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033491, - 47.905369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KR0Q8THZQY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189956, - 49.015557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AAOHVNYG1P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033491, - 47.905369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KR0Q8THZQY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189956, - 49.015557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AAOHVNYG1P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.189956, - 49.015557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AAOHVNYG1P", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12831, - 48.81617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "DCQ0LAWQZE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10233384, - 44.56943231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "FJZP5RGIWR", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11859, - 48.82555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "CBGWRNLZUG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8647, - 45.51407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AHACHJV7QW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87564, - 45.52464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "LRLCQP4NJM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8716, - 45.52442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "X1GL3ADTTI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87108, - 45.52345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KPFDX4FTAA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87667, - 45.52714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "QM8YJBAKS4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87537, - 45.52576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "YSDEHHGQGH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8739, - 45.52472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "LTETLMWDSZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849718, - 45.501381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "VTBYUSAA5F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.849718, - 45.501381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "VTBYUSAA5F", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86466, - 45.51317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MBBTCSNJTK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87279, - 45.52143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "ENOYQDXIZO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86831, - 45.52124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "DLA46WPGDU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87108, - 45.52345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "KPFDX4FTAA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.13736, - 48.82647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "I89XUJ039I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86831, - 45.52124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "DLA46WPGDU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87419, - 45.52793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "ZDHWTXVFAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.396071, - 47.290493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B4QYBOUPMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.396071, - 47.290493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B4QYBOUPMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.396071, - 47.290493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B4QYBOUPMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.394561, - 47.282039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "PD9O4ON1F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.396071, - 47.290493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B4QYBOUPMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.396071, - 47.290493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "B4QYBOUPMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.394561, - 47.282039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "PD9O4ON1F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87279, - 45.52143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "ENOYQDXIZO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87419, - 45.52793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "ZDHWTXVFAL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86466, - 45.51317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "MBBTCSNJTK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12707, - 48.82238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JSNTKCLBH0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8647, - 45.51407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "AHACHJV7QW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.13736, - 48.82647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "I89XUJ039I", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12136, - 48.81823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IVMKSI9TBL", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11855, - 48.83427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "XA1GQIFFQO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12831, - 48.81617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "DCQ0LAWQZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12831, - 48.81617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "DCQ0LAWQZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12136, - 48.81823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "IVMKSI9TBL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11855, - 48.83427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "XA1GQIFFQO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11859, - 48.82555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "CBGWRNLZUG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12707, - 48.82238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JSNTKCLBH0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12707, - 48.82238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "JSNTKCLBH0", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.394561, - 47.282039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "PD9O4ON1F6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11641, - 48.82899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OMGNS1LCLU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11641, - 48.82899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OMGNS1LCLU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11641, - 48.82899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OMGNS1LCLU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11641, - 48.82899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OMGNS1LCLU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11641, - 48.82899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OMGNS1LCLU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.11641, - 48.82899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "OMGNS1LCLU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8739, - 45.52472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "LTETLMWDSZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87537, - 45.52576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "YSDEHHGQGH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87667, - 45.52714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "QM8YJBAKS4", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87564, - 45.52464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "LRLCQP4NJM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8716, - 45.52442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Easycharge services", - "owner:ref:FR:SIREN": "901772400", - "email": "exploitation@easycharge-vinci.COM", - "phone": "3 67 47 06 40", - "network": "Easycharge services", - "ref": "X1GL3ADTTI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6492, - 48.7561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Guerin", - "owner:ref:FR:SIREN": "512913518", - "email": "yannick@2ed.fr", - "phone": "0643099223", - "network": "2ED", - "ref": "6652155f-b6f5-417e-972d-2575195a5a22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr 08:00-12:00,mo-fr 13:30-18:00", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8261274, - 46.46755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU", - "ref": "67139", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8261274, - 46.46755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU", - "ref": "67140", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89, - 44.02 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "a300ab22-3725-4fad-9670-e76fe6594a81", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2398801, - 46.6646193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota Parthenay - LES GARAGES CHAIGNEAU", - "ref": "59965", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2398801, - 46.6646193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota Parthenay - LES GARAGES CHAIGNEAU", - "ref": "59964", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4943484, - 46.8369672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota Bressuire - LES GARAGES CHAIGNEAU", - "ref": "59954", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4943484, - 46.8369672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "342583796", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Toyota Bressuire - LES GARAGES CHAIGNEAU", - "ref": "59953", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-18:00,Sat 09:00-18:00", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83444, - 48.068958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "410546957", - "email": "philippe.voisin@virta.global", - "phone": "+33 (0)6 12912998", - "network": "Groupama supports et services ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:01", - "start_date": "2022-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83444, - 48.068958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "410546956", - "email": "philippe.voisin@virta.global", - "phone": "+33 (0)6 12912997 ", - "network": "Groupama supports et services ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:00", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83444, - 48.068958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "410546959", - "email": "philippe.voisin@virta.global", - "phone": "+33 (0)6 12913000", - "network": "Groupama supports et services ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:03", - "start_date": "2022-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83444, - 48.068958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "410546958", - "email": "philippe.voisin@virta.global", - "phone": "+33 (0)6 12912999", - "network": "Groupama supports et services ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:02", - "start_date": "2022-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83444, - 48.068958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "410546961", - "email": "philippe.voisin@virta.global", - "phone": "+33 (0)6 12913002", - "network": "Groupama supports et services ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:05", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83444, - 48.068958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "410546960", - "email": "philippe.voisin@virta.global", - "phone": "+33 (0)6 12913001", - "network": "Groupama supports et services ", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:04", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0873826, - 49.1011474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Guerin", - "owner:ref:FR:SIREN": "512913518", - "email": "yannick@2ed.fr", - "phone": "0643099223", - "network": "2ED LOGISTIQUE", - "ref": "6bb1e2c9-0d32-49a4-9598-83c9ae504b51", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr 08:00-12:00,mo-fr 13:30-18:00", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955188, - 47.160115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BORNECO", - "owner:ref:FR:SIREN": "830699930", - "email": "freddy.borneco@gmail.com", - "phone": "0669684978", - "network": "Comte Liger-Belair", - "ref": "FR*BHM*ECOMTELIGIERBELAIR*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-SU 08:00-18:00", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25, - 48.94 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SEGA ELECTRICITE", - "owner:ref:FR:SIREN": "791408040", - "email": "pierremarinere489@yopmail.com", - "network": "hagger", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "mo-fr 8:00-12:00,mo-fr 14:00-18:0,Th 8:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32, - 48.92 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCI OLYMPE", - "owner:ref:FR:SIREN": "844817650", - "email": "eabdi@balas.net", - "phone": "0149454545", - "network": "SCI olympe", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96862, - 49.807764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96862, - 49.807764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92515, - 49.449857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95421, - 48.94159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96862, - 49.807764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96862, - 49.807764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96862, - 49.807764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.470007, - 50.339582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.467849, - 50.340625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.695719, - 48.720927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.319564, - 49.320563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.951229, - 48.941981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046384, - 50.529555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.046084, - 50.531584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691281, - 48.725339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.927965, - 49.445715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719718, - 49.518581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.751178, - 50.322857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGE NOEL BERANGER", - "owner:ref:FR:SIREN": "692012552", - "email": "b.rochefort@noelberanger.fr", - "phone": "0491432450", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.751178, - 50.322857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGE NOEL BERANGER", - "owner:ref:FR:SIREN": "692012552", - "email": "b.rochefort@noelberanger.fr", - "phone": "0491432450", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960539, - 48.05761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838636, - 46.962058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574611, - 48.361796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.497669, - 47.974269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.959138, - 48.057404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.499019, - 47.978019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071399, - 45.845094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.801309, - 46.355503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585043, - 47.149426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.635365, - 48.610633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.800069, - 46.356078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.713227, - 47.104799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.672802, - 47.789103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.555524, - 48.247318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.554402, - 48.243165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1169209, - 45.6281317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "909177297", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "AUTO SERVICE PLUS", - "ref": "4227d79c-7a5a-4ca1-8853-486d8a91c665", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1227209, - 50.9879353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "GARAGE RABAT", - "ref": "9a04b6ff-ebb9-4858-8ae3-bfcbd63f2775", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.61, - 44.2 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Securecharge", - "owner:ref:FR:SIREN": "434651246", - "email": "contact@securecharge.fr", - "network": "Securecharge", - "ref": "Securecharge-CAALPA-CC-1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "COMMUNAUTE DE COMMUNE LE DOURDANNAIS EN HUREPOIX (CCDH)", - "owner:ref:FR:SIREN": "249100595", - "email": "gael.kergroach@ccdourdannais.com", - "phone": "0160811222", - "network": "Bornes VE WattPark/EelDynamic - Av. Eugène Vernholes, Dourdan", - "ref": "41fbb9fc-a0af-4524-b7f1-d1b7cddb596a", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5960162, - 50.5265072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "le grand hotel", - "ref": "2111dee4-6034-47b2-a314-6222f7b003ee", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811912, - 50.928405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811912, - 50.928405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811912, - 50.928405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811912, - 50.928405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.811912, - 50.928405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812952, - 50.934908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6813519665418823, - 48.872472019341075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GROUPE LGE SOCIETE AUTOPLUG", - "owner:ref:FR:SIREN": "393755962", - "email": "cindyt@groupelge.com", - "phone": "0612105307", - "network": "AUTOPLUG", - "ref": "f9bed002-5bbd-44d6-aaaf-7673a109fc32", - "socket:type2": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8847469775400896, - 48.93616199443869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GROUPE LGE SOCIETE AUTOPLUG", - "owner:ref:FR:SIREN": "499954717", - "email": "cindyt@groupelge.com", - "phone": "0612105307", - "network": "AUTOPLUG", - "ref": "265ba845-35e1-475e-a964-2dac31b42cd9", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.685392965881789, - 48.87564000155572 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GROUPE LGE", - "owner:ref:FR:SIREN": "799415070", - "email": "cindyt@groupelge.com", - "phone": "0612105307", - "network": "AUTOPLUG", - "ref": "cc1d2e0e-7a9b-45b5-9b5b-de5e07ec5ff8", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.327669, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.096186, - 49.241225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.096186, - 49.241225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.096186, - 49.241225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097517, - 49.246191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097517, - 49.246191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097517, - 49.246191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661876, - 49.132545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657184, - 49.134222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3852, - 49.0802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "2Ed Coutances", - "owner:ref:FR:SIREN": "512913518", - "email": "yannick@2ed.fr", - "phone": "0643099223", - "network": "2ED Coutances", - "ref": "339947f7-156f-4a43-8d99-11be0fcadc38", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "mo-fr 08:00-12:00,13:30-18:00", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.50378, - 48.61529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Wedom", - "owner:ref:FR:SIREN": "834148611", - "email": "contact@wedom.io", - "phone": "0970266332", - "network": "Armonial", - "ref": "a9096453-eaa5-4678-a6bc-04dd8560dd64", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33728, - 46.11 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PAS DITINERANCE", - "owner:ref:FR:SIREN": "909790511", - "email": "PASDITINENERANCE@gmail.com", - "phone": "0612345678", - "network": "PAS DITINERANCE", - "ref": "249d8e6d-f737-4dd8-b92f-1c26a2fd251b", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0767992, - 44.3455705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "909177297", - "email": "a.tarridec@mabornauto.com", - "phone": "0361626161", - "network": "TRISCOS AUTOMOBILES", - "ref": "ab39a848-e59f-47b2-9ad1-1dd3e94d3fa7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3759709, - 51.0192287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "vandenbussche", - "ref": "2480517a-cc7d-44d3-82ec-15b467c1c91d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986205, - 44.140487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "8b6cd60c-7039-4767-a614-4bde137d5e1b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.042501, - 49.138351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GEDIBOIS BATI COLMAN", - "owner:ref:FR:SIREN": "817537236", - "email": "commercial@bati-colman.fr", - "phone": "0387956778", - "network": "GEDIBOIS BATI COLMAN", - "ref": "88ef85e9-de48-4f6d-ba13-85556123f161", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 13:30-18:00", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0802139, - 44.5179413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "a50a57d0-be6b-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4457879, - 44.5894889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "acc38e38-be6b-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.050015999999999, - 44.04692499999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "ad76910e-be6b-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.432864, - 48.181061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39751, - 48.046967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39751, - 48.046967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.352215, - 48.167175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.352215, - 48.167175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.398973, - 48.256221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.432877, - 48.179861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.432864, - 48.181061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.460145, - 48.198666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.460145, - 48.198666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.429412, - 48.253061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.459867, - 48.19329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.459867, - 48.19329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.461456, - 48.192654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.461456, - 48.192654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.467504, - 48.19942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.429412, - 48.253061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.467504, - 48.19942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.368293, - 48.189981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43045, - 48.190584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.398973, - 48.256221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.303181, - 48.360695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.303181, - 48.360695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.352215, - 48.167175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.352215, - 48.167175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.368293, - 48.189981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.434275, - 48.204642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.434275, - 48.204642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43045, - 48.190584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.432877, - 48.179861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.44083, - 48.169844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43536, - 48.172168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43536, - 48.172168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.307515, - 48.175353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.305172, - 48.161522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.307515, - 48.175353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.434328, - 48.229258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.434328, - 48.229258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.305172, - 48.161522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.44083, - 48.169844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.466535, - 48.197235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073364", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6001", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.466535, - 48.197235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073363", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6000", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.40705, - 48.254178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073365", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6002", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.40705, - 48.254178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073366", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6003", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.291893, - 48.369538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073367", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6004", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.291893, - 48.369538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073368", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6005", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.378322, - 48.250729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073369", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6006", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.378322, - 48.250729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073370", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6007", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.263997, - 48.002212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073372", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6009", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.263997, - 48.002212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Last Mile Solutions", - "owner:ref:FR:SIREN": "909073371", - "email": "support@lastmilesolutions.com", - "phone": "+31 10 312 6008", - "network": "Last Mile Solutions", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6292594023148577, - 48.097034066785476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "818110629", - "email": "exploitation@freshmile.com", - "network": "Freshmile", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6292594023148577, - 48.097034066785476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "818110629", - "email": "exploitation@freshmile.com", - "network": "Freshmile", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6292594023148577, - 48.097034066785476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "818110629", - "email": "exploitation@freshmile.com", - "network": "Freshmile", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.985609, - 50.273541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Normatech Lodmi", - "owner:ref:FR:SIREN": "007220338", - "email": "contact@lodmi.com", - "phone": "0374830250", - "network": "Bornes de recharge AC Candas", - "ref": "9a20d4d6-4f37-4557-be0f-81cae434db06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6969447, - 46.1869392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "1c56aaca-a92f-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9881828, - 44.2251248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "48baf7c6-a92d-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2503986, - 43.4706838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "6cf8b432-a92a-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2503986, - 43.4706838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "5a8bb060-a92a-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.481704, - 43.691167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGE NOEL BERANGER", - "owner:ref:FR:SIREN": "387523038", - "email": "b.rochefort@noelberanger.fr", - "phone": "0491432450", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.481704, - 43.691167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGE NOEL BERANGER", - "owner:ref:FR:SIREN": "387523038", - "email": "b.rochefort@noelberanger.fr", - "phone": "0491432450", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:00", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0631174, - 43.629227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGE NOEL BERANGER", - "owner:ref:FR:SIREN": "402682991", - "email": "b.rochefort@noelberanger.fr", - "phone": "0491432450", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0631174, - 43.629227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGE NOEL BERANGER", - "owner:ref:FR:SIREN": "402682991", - "email": "b.rochefort@noelberanger.fr", - "phone": "0491432450", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8745895, - 43.088683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "1eb8e7b4-62ee-474b-acd4-b6023d6614fb", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2038118, - 43.7679769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9140338999999997, - 43.47387800000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "bf55ffa3-b3a6-47af-a385-1238518c4580", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5792, - 50.49925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma borne auto", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "CRITTM2A", - "ref": "7b1f4366-78f9-42cd-9b13-1d38b33eca3c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.03, - 45.37 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALLENERGIES", - "owner:ref:FR:SIREN": "912904109", - "email": "contact@allenergies.fr", - "network": "ALLENERGIES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.03, - 45.37 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALLENERGIES", - "owner:ref:FR:SIREN": "912904109", - "email": "contact@allenergies.fr", - "network": "ALLENERGIES", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88, - 46.3 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALLENERGIES", - "owner:ref:FR:SIREN": "912904109", - "email": "contact@allenergies.fr", - "network": "ALLENERGIES", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88, - 46.3 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALLENERGIES", - "owner:ref:FR:SIREN": "912904109", - "email": "contact@allenergies.fr", - "network": "ALLENERGIES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88, - 46.3 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALLENERGIES", - "owner:ref:FR:SIREN": "912904109", - "email": "contact@allenergies.fr", - "network": "ALLENERGIES", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88, - 46.3 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALLENERGIES", - "owner:ref:FR:SIREN": "912904109", - "email": "contact@allenergies.fr", - "network": "ALLENERGIES", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48, - 47.45 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SOLIDARAUTO 49", - "owner:ref:FR:SIREN": "522614148", - "email": "solidarauto49@orange.fr", - "phone": "02 41 35 10 50", - "network": "SOLIDARAUTO 49", - "ref": "ba8b6111-5958-436b-b596-5a0a9f36c47a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 13:30-17:30", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3853772952424, - 48.76078419282144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCACHE GARAGE SENIA", - "owner:ref:FR:SIREN": "309553154", - "email": "garage.senia@scache.fr", - "network": "GARAGE DE LA SENIA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-fr 7:00-19:00,Sa 8:00-12:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3853772952424, - 48.76078419282144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCACHE GARAGE SENIA", - "owner:ref:FR:SIREN": "309553154", - "email": "garage.senia@scache.fr", - "network": "GARAGE DE LA SENIA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-fr 7:00-19:00,Sa 8:00-12:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368253087879, - 48.63330486819303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRSE GARAGE MARINIERE", - "owner:ref:FR:SIREN": "320758378", - "email": "garage.mariniere@scache.fr", - "network": "GARAGE DE LA MARINIERE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-fr 7:00-19:00,Sa 8:00-12:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368253087879, - 48.63330486819303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRSE GARAGE MARINIERE", - "owner:ref:FR:SIREN": "320758378", - "email": "garage.mariniere@scache.fr", - "network": "GARAGE DE LA MARINIERE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-fr 7:00-19:00,Sa 8:00-12:00", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0905967, - 50.6938179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma borne auto", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "NOR NUIT", - "ref": "fc161245-0854-4069-af37-e005493803bc", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1233758, - 50.9897573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma borne auto", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "restaurant l'eclusier", - "ref": "0684bfd6-beba-41c9-9971-a815e82ffaf2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.23322691163974948, - 43.17534289658668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE", - "owner:ref:FR:SIREN": "380363291", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "Bricomarché Coarraze", - "ref": "6fc1f04e-b3a4-4002-b89f-9955d0a67474", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9745308, - 48.7955019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "394623235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NIJKERK COMPUTER SOLUTIONS", - "ref": "139321", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 09:00-18:00", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9745308, - 48.7955019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "394623235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NIJKERK COMPUTER SOLUTIONS", - "ref": "139319", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 09:00-18:00", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9745308, - 48.7955019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "394623235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NIJKERK COMPUTER SOLUTIONS", - "ref": "139322", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 09:00-18:00", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9745308, - 48.7955019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "394623235", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "NIJKERK COMPUTER SOLUTIONS", - "ref": "139320", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Lu- Ve 09:00-18:00", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78772, - 45.587334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.081096, - 45.933577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lundi-Samedi 11:00-23:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.080938, - 45.933958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lundi-Samedi 11:00-23:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.303039, - 46.07588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lundi-Vendredi 08:00-18:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.084506, - 45.934997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.084455, - 45.934924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.787825, - 45.587026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.081295, - 45.933736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lundi-Samedi 11:00-23:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.964767, - 48.826624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Dimanche-Jeudi 11:30-23:00 / Vendredi - Samedi : 11:30-23:30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09111, - 45.892516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09201, - 45.89284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091668, - 45.892442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09154, - 45.892571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091524, - 45.892581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.964725, - 48.826976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Dimanche-Jeudi 11:30-23:00 / Vendredi - Samedi : 11:30-23:30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.787973, - 45.58718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315221, - 46.074003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lundi-Vendredi 09:00-19:00 / Samedi : 09:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.315092, - 46.073619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lundi-Vendredi 09:00-19:00 / Samedi : 09:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091181, - 45.892593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2446, - 46.2175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2442, - 46.2175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Volta Charging", - "owner:ref:FR:SIREN": "898582432", - "email": "support.france@voltacharging.com", - "phone": "805080056", - "network": "Réseau de recharge Volta Charging", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.370315499999999, - 43.421597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "5c0bb6f0-a629-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.802524000000001, - 43.81472400000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "5a7d2c7a-a628-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.863237199999999, - 42.68525149999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "2460897a-a623-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949088299999999, - 44.31341339999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "3c380d96-a62a-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.562731802998726, - 43.485743901157626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "410561666", - "email": "ismael@electromaps.com", - "phone": "34694495065", - "network": "Association des amis de Valmagne", - "ref": "50e103da-9bf1-11ed-a8fc-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.32188977802357, - 4.909708809721746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "500754130", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "MIDAS - 973", - "ref": "FR*EZD*E45628", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-17:15, Sa 07:30-12:15", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.05, - 48.77 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "total énergie", - "owner:ref:FR:SIREN": "775688732", - "email": "service.pro@mail.totalenergies.fr", - "phone": "09 77 40 50 60", - "network": "enedis", - "ref": "2f00b621-df9a-4f47-a16a-f6367c6f4ee1", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4974859, - 51.0330233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma borne auto", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "camping de la hoogue moote", - "ref": "618013fd-1c28-475a-b254-5d70df20d740", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38219, - 45.45884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LABORATOIRE ESTRADE HUART", - "owner:ref:FR:SIREN": "315708974", - "email": "estrade.huart@gmail.com", - "network": "LABORATOIRE ESTRADE HUART", - "ref": "644a2d6e-ddca-11ed-b5ea-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.014027, - 44.12000449999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "0643f7d8-a22c-11ed-a8fc-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.014027, - 44.12000449999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "d3cad87d-af23-4a6a-96a1-eed1a258dbf2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4900939, - 51.0677071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "a.tarridec@maborneauto.com", - "phone": "0361626161", - "network": "camping zuydcootebeach", - "ref": "21f11530-1df1-4e97-8874-fb621835cfb1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3418004, - 51.0293366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "A.TARRIDEC@MABORNEAUTO.COM", - "phone": "0361626161", - "network": "SAS VANDENBUSSCHE", - "ref": "28370af1-4351-460c-b230-7244a31d0245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4069522, - 51.0421206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "A.TARRIDEC@MABORNEAUTO.COM", - "phone": "0361626161", - "network": "SAS VANDENBUSSCHE", - "ref": "347f5151-9688-4f3c-9509-90c282501fab", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4307419, - 50.9694554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NON CONCERNE", - "owner:ref:FR:SIREN": "880217922", - "email": "A.TARRIDEC@MABORNEAUTO.COM", - "phone": "0361626161", - "network": "HOTEL AU TONNELIER", - "ref": "667c7cce-8908-4fd5-8a2a-b02cae20e4e8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02, - 46.87 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GABORIT BOCAGE SERVICES", - "owner:ref:FR:SIREN": "819501768", - "email": "flavien.gaborit@o2.fr", - "phone": "0243720202", - "network": "Réseau de recharge Gaborit", - "ref": "FR*MAP*P000000007038", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02, - 46.87 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GABORIT BOCAGE SERVICES", - "owner:ref:FR:SIREN": "819501768", - "email": "flavien.gaborit@o2.fr", - "phone": "0243720202", - "network": "Réseau de recharge Gaborit", - "ref": "FR*MAP*P000000007038", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6451248, - 48.2690475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "30893f16-8cc1-4c38-ac64-f258d2f9bdd1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.390097, - 48.27955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317804144", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda CHATENOIS - GARAGE WALTER", - "ref": "50637", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–18:30,Sat 08:00-17:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.390097, - 48.27955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "317804144", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda CHATENOIS - GARAGE WALTER", - "ref": "50650", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–18:30,Sat 08:00-17:00", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.699955, - 49.660872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8364845, - 49.6621683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5052815, - 48.5527294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4060821, - 49.1868957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4209417, - 49.3787366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7876279, - 49.4712494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3367836, - 48.6249671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1278249, - 49.1642203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.499777, - 48.554186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5122859, - 48.5537084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4671269, - 48.760259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6962131, - 49.3355948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.699955, - 49.660872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692228, - 49.665796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3036013, - 49.5938654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4689422, - 48.968137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2592659, - 49.6187571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19098, - 48.91603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0898374, - 48.5866543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0548212, - 48.60268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.944979, - 48.6487864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.523626, - 48.988262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3820192, - 49.4878826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.662814, - 49.6038954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2436855, - 49.1000191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2491715, - 49.0897834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5355451, - 49.2189767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5276278, - 49.2121913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8093807, - 49.5128051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8044956, - 49.5064375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8746268, - 48.5380251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2819547, - 49.1611428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.394381, - 48.7941251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5463226, - 49.2894615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.347532, - 48.649714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4549578, - 48.752177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8327776, - 48.5992163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.226381, - 48.834159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2716169, - 49.5886421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0591078, - 48.9734709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.565538, - 49.654175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.605019, - 49.639211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.579452, - 49.639744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.571767, - 49.639352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2192249, - 48.8367225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9214924, - 48.7244128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7362482, - 49.6043821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.132432, - 49.1121181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1135212, - 49.1168854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5985858, - 49.0490526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3691367, - 48.6908636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200083640", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3638731, - 48.6838561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200083640", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.41135, - 49.130605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5296983, - 49.3863739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4035618, - 49.668173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5701226, - 48.8164751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064822, - 49.104373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.069148, - 49.111507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116682, - 49.100755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.100014, - 49.116437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.087859, - 49.11941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095834, - 49.115154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.086968, - 49.116522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1364357, - 49.2283939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.320199, - 48.523811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0907322, - 48.5759106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9757299, - 49.1354216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2645353, - 49.3199395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0292342, - 49.1916925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.601422, - 49.614228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.603728, - 49.613656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.207212, - 48.860445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.617731, - 49.643581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1732257, - 49.0762621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2421829, - 49.3034833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2448201, - 49.3028024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2958843, - 49.3798413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4401486, - 48.9124279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2832819, - 49.0258146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.624323, - 49.63612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0225093, - 48.6764849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.629394, - 49.636395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.623855, - 49.645317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.64284, - 49.628488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.641399, - 49.626574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.634003, - 49.627575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.621794, - 49.637993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5903001, - 49.5635953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6391676, - 49.4713781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6315858, - 49.471884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5160379, - 48.898219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1700677, - 48.7248101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7752953, - 49.5357881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7690024, - 49.3682998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7554556, - 49.3821883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7906159, - 49.372388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8327776, - 48.5992163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3632336, - 48.6867883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200083640", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3638731, - 48.6838561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200083640", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3691367, - 48.6908636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200083640", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5985858, - 49.0490526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1135212, - 49.1168854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.132432, - 49.1121181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7362482, - 49.6043821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61295, - 49.638748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.611977, - 49.635956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0375894, - 49.0517922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3505134, - 48.9096407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5673533, - 48.7743602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1743921, - 48.6204334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1796253, - 48.5960906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.175209, - 49.133094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5568028, - 48.9774889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2642285, - 48.9483719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.954338, - 48.983317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.949023, - 48.988129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5683501, - 48.8327924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5955279, - 48.8359208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5965401, - 48.8375254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5877092, - 48.8381083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6079197, - 49.0993255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5794053, - 49.0965681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4147694, - 48.8358569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0025626, - 49.0483967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2504703, - 48.841466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8579488, - 49.5512758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.654263, - 49.647892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66402, - 49.642007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.675774, - 49.654087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.651226, - 49.654982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2911409, - 48.6198576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5804867, - 48.8468776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5640155, - 49.200886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6723914, - 49.5574624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4536927, - 49.0515211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4412921, - 49.0486743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4666847, - 49.054234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4400962, - 49.0438633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3632336, - 48.6867883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200083640", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3130607, - 49.4095477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7906159, - 49.372388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4671269, - 48.760259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6962131, - 49.3355948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.692228, - 49.665796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3036013, - 49.5938654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4689422, - 48.968137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2592659, - 49.6187571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.347532, - 48.649714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4549578, - 48.752177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.086968, - 49.116522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9214924, - 48.7244128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0292342, - 49.1916925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2645353, - 49.3199395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9757299, - 49.1354216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0907322, - 48.5759106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.320199, - 48.523811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5122859, - 48.5537084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5052815, - 48.5527294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4999864, - 48.5542101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1278249, - 49.1642203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7554556, - 49.3821883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7876279, - 49.4712494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4209417, - 49.3787366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4060821, - 49.1868957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19098, - 48.91603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0898374, - 48.5866543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0548212, - 48.60268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.944979, - 48.6487864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.523626, - 48.988262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3820192, - 49.4878826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.662814, - 49.6038954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2436855, - 49.1000191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2491715, - 49.0897834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1364357, - 49.2283939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095834, - 49.115154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5276278, - 49.2121913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.765945, - 48.603128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.954338, - 48.983317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.347532, - 48.649714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.97762, - 49.034503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.97762, - 49.034503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.600058, - 48.837858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.600058, - 48.837858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.765945, - 48.603128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.087859, - 49.11941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.844165, - 49.56517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.844165, - 49.56517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.97429, - 49.094013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.97429, - 49.094013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596063, - 49.166556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596063, - 49.166556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2192249, - 48.8367225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.226381, - 48.834159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.571767, - 49.639352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.579452, - 49.639744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.605019, - 49.639211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.565538, - 49.654175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0591078, - 48.9734709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3130607, - 49.4095477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2716169, - 49.5886421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.41135, - 49.130605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5296983, - 49.3863739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4035618, - 49.668173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5701226, - 48.8164751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.064822, - 49.104373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.069148, - 49.111507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116682, - 49.100755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.100014, - 49.116437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "215005026", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5355451, - 49.2189767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3367836, - 48.6249671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8093807, - 49.5128051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.624323, - 49.63612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4536927, - 49.0515211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4412921, - 49.0486743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4666847, - 49.054234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4400962, - 49.0438633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0025626, - 49.0483967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0375894, - 49.0517922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.611977, - 49.635956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61295, - 49.638748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.621794, - 49.637993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.634003, - 49.627575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.641399, - 49.626574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.64284, - 49.628488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8044956, - 49.5064375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.629394, - 49.636395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.617731, - 49.643581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5640155, - 49.200886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2832819, - 49.0258146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4401486, - 48.9124279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2958843, - 49.3798413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2448201, - 49.3028024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2421829, - 49.3034833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1732257, - 49.0762621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5903001, - 49.5635953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6391676, - 49.4713781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6315858, - 49.471884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5160379, - 48.898219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1700677, - 48.7248101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7752953, - 49.5357881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8364845, - 49.6621683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7690024, - 49.3682998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6723914, - 49.5574624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.623855, - 49.645317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5804867, - 48.8468776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.954338, - 48.983317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8746268, - 48.5380251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2819547, - 49.1611428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2911409, - 48.6198576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5463226, - 49.2894615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.601422, - 49.614228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.603728, - 49.613656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.207212, - 48.860445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0225093, - 48.6764849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5673533, - 48.7743602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1743921, - 48.6204334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1796253, - 48.5960906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.175209, - 49.133094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5568028, - 48.9774889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2642285, - 48.9483719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.394381, - 48.7941251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.949023, - 48.988129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3505134, - 48.9096407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5683501, - 48.8327924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.651226, - 49.654982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66402, - 49.642007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.654263, - 49.647892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8579488, - 49.5512758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2504703, - 48.841466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4147694, - 48.8358569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.675774, - 49.654087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "200056844", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5794053, - 49.0965681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5877092, - 48.8381083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5965401, - 48.8375254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6079197, - 49.0993255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5955279, - 48.8359208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Total marketing france", - "owner:ref:FR:SIREN": "255002883", - "email": "e-charge50@sdem50.fr", - "phone": "0809107584", - "network": "e-charge50", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2785984, - 41.5930127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "340119411", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL LE TILBURY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "901985804", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "901985804", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47906106710434, - 44.22049963493783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "798043659", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES AMARINES", - "ref": "FRC2P002101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47906106710434, - 44.22049963493783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "798043659", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES AMARINES", - "ref": "FRC2P002101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9736927577629495, - 44.33852129529498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "539500546", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LE PLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3790712356567383, - 43.000159063034566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "793042086", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LA BOURIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002503", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002505", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.017630100250244, - 44.10531997680664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324577816", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING Sunêlia l-Hippocampe", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002504", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992544651031494, - 44.077613830566406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "807940069", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION LUMIIN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000407", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000407", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000405", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000405", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.278209770098333, - 43.52534026251893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "451611909", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU MENTONE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.278209770098333, - 43.52534026251893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "451611909", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU MENTONE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.683051586151123, - 48.59249496459961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.683051586151123, - 48.59249496459961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926622543415475, - 45.745946211701884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "448848283", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION CIEL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632329940795898, - 43.463932037353516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "898839386", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL FORMULE 1", - "ref": "FRC2P002601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002506", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.130048315345508, - 44.46056813187505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "896750254", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA RIVE CIELA VILLAGE", - "ref": "FRC2P003201", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632329940795898, - 43.463932037353516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "898839386", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL FORMULE 1", - "ref": "FRC2P002601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003902", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003902", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.833339258860764, - 48.119479307086486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "521528141", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING AUBERGE LA STENIOLE", - "ref": "FRC2P004001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0321381, - 42.5615661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324079086", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES MARSOUINS", - "ref": "FRC2P003802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0321381, - 42.5615661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324079086", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES MARSOUINS", - "ref": "FRC2P003801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.184235618402654, - 48.69547087754244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "517676805", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "L'Hôtel Particulier", - "ref": "FRC2P003702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.184235618402654, - 48.69547087754244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "517676805", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "L'Hôtel Particulier", - "ref": "FRC2P003701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.833339258860764, - 48.119479307086486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "521528141", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING AUBERGE LA STENIOLE", - "ref": "FRC2P004002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.076252915345508, - 43.7342593961128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "422848515", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA FARIGOULETTE CIEL A VILLAGE", - "ref": "FRC2P003501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.615694, - 42.9937786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "829959089", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL ORIGINALS ACCESS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4648423, - 48.95141080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "750327231", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MINOTTI-TRANS", - "ref": "FRC2P002901", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.130048315345508, - 44.46056813187505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "896750254", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA RIVE CIELA VILLAGE", - "ref": "FRC2P003202", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.615694, - 42.9937786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "829959089", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL ORIGINALS ACCESS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.076252915345508, - 43.7342593961128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "422848515", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA FARIGOULETTE CIEL A VILLAGE", - "ref": "FRC2P003502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.615694, - 42.9937786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "829959089", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL ORIGINALS ACCESS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002503", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002504", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002505", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002506", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632329940795898, - 43.463932037353516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "898839386", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL FORMULE 1", - "ref": "FRC2P002601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632329940795898, - 43.463932037353516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "898839386", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL FORMULE 1", - "ref": "FRC2P002601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.076252915345508, - 43.7342593961128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "422848515", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA FARIGOULETTE CIEL A VILLAGE", - "ref": "FRC2P003502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.615694, - 42.9937786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "829959089", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL ORIGINALS ACCESS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4648423, - 48.95141080000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "750327231", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MINOTTI-TRANS", - "ref": "FRC2P002901", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.130048315345508, - 44.46056813187505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "896750254", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA RIVE CIELA VILLAGE", - "ref": "FRC2P003201", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.130048315345508, - 44.46056813187505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "896750254", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA RIVE CIELA VILLAGE", - "ref": "FRC2P003202", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.076252915345508, - 43.7342593961128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "422848515", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LA FARIGOULETTE CIEL A VILLAGE", - "ref": "FRC2P003501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2785984, - 41.5930127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "340119411", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL LE TILBURY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.3790712356567383, - 43.000159063034566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "793042086", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LA BOURIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9736927577629495, - 44.33852129529498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "539500546", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LE PLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000405", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.683051586151123, - 48.59249496459961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.683051586151123, - 48.59249496459961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.278209770098333, - 43.52534026251893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "451611909", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU MENTONE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.278209770098333, - 43.52534026251893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "451611909", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU MENTONE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000405", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47906106710434, - 44.22049963493783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "798043659", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES AMARINES", - "ref": "FRC2P002101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000407", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720282077789307, - 43.43741989135742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000407", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.017630100250244, - 44.10531997680664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324577816", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING Sunêlia l-Hippocampe", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992544651031494, - 44.077613830566406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "807940069", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION LUMIIN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "901985804", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3159294128418, - -20.949535369873047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "901985804", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "EASYPLUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47906106710434, - 44.22049963493783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "798043659", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES AMARINES", - "ref": "FRC2P002101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.844548, - 48.198965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "797742442", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING PORTE DES VOSGES", - "ref": "FRC2P003602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926622543415475, - 45.745946211701884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "448848283", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION CIEL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5627677, - 48.6203594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "441361516", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "ARC EN CIEL SUBLIMATION", - "ref": "FRC2P005101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9588304576710754, - 43.10066375282533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": " LOY'S HOTEL", - "ref": "FRC2P004601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.960545459507173, - 43.30223171200826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SARL CASTEL CONTROLE", - "ref": "FRC2P004701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.960545459507173, - 43.30223171200826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SARL CASTEL CONTROLE", - "ref": "FRC2P004702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.442518, - 45.462032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "L'OXYGENE", - "ref": "FRC2P004901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.442518, - 45.462032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "L'OXYGENE", - "ref": "FRC2P004901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7693176, - 45.0873099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "750986200", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SARL LE BOIS DE CORNAGE", - "ref": "FRC2P004801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7693176, - 45.0873099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "750986200", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SARL LE BOIS DE CORNAGE", - "ref": "FRC2P004801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5627677, - 48.6203594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "441361516", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "ARC EN CIEL SUBLIMATION", - "ref": "FRC2P005101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7717784, - 47.3873487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAFE LA PROMENADE", - "ref": "FRC2P005201", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.581885286584799, - 48.9020454543009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SCIC SEMPIN", - "ref": "FRC2P004502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.219229, - 48.11093710000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SARL 3M", - "ref": "FRC2P005501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.219229, - 48.11093710000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SARL 3M", - "ref": "FRC2P005501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.130455146024364, - 48.92768371647863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.130455146024364, - 48.92768371647863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1331726, - 48.92402509999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1331726, - 48.92402509999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1229985, - 48.9267881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9588304576710754, - 43.10066375282533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": " LOY'S HOTEL", - "ref": "FRC2P004601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1229985, - 48.9267881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.581885286584799, - 48.9020454543009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SCIC SEMPIN", - "ref": "FRC2P004502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.833339258860764, - 48.119479307086486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "521528141", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING AUBERGE LA STENIOLE", - "ref": "FRC2P004002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.581885286584799, - 48.9020454543009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SCIC SEMPIN", - "ref": "FRC2P004501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.746361669308984, - 41.94325812908591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "851287862", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CARREFOUR AJACCIO", - "ref": "FRC2P003403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.184235618402654, - 48.69547087754244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "517676805", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "L'Hôtel Particulier", - "ref": "FRC2P003701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.184235618402654, - 48.69547087754244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "517676805", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "L'Hôtel Particulier", - "ref": "FRC2P003702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0321381, - 42.5615661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324079086", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES MARSOUINS", - "ref": "FRC2P003802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.833339258860764, - 48.119479307086486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "521528141", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING AUBERGE LA STENIOLE", - "ref": "FRC2P004001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0321381, - 42.5615661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324079086", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LES MARSOUINS", - "ref": "FRC2P003801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003902", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.115732, - 49.2805603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "412235319", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "AGAPHONE", - "ref": "FRC2P003902", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.33806628395921656, - 46.57850280671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402073597", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL DE L'EUROPE", - "ref": "FRC2P004401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.33806628395921656, - 46.57850280671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402073597", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL DE L'EUROPE", - "ref": "FRC2P004401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.405862426409584, - 45.415499560107136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "327641361", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SQUASH CLUB SAINT-ETIENNE", - "ref": "FRC2P004301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.581885286584799, - 48.9020454543009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "803965110", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SCIC SEMPIN", - "ref": "FRC2P004501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002504", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002506", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002505", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002503", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7970384, - 41.85874031254947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "537855009", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "KALLISTE RIVE SUD", - "ref": "FRC2P002502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9736927577629495, - 44.33852129529498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "539500546", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING LE PLO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316255993913532, - 48.87284863189276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000405", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316255993913532, - 48.87284863189276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.925962686538696, - 45.746076812151216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "448848283", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION CIEL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.277399063110352, - 43.52554183417336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "451611909", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU MENTONE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.277399063110352, - 43.52554183417336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "451611909", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU MENTONE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sun 06:00-22:00", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000402", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000403", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.017138957977295, - 44.10501405816338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "324577816", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CAMPING Sunêlia l-Hippocampe", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000405", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000407", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.994230270385742, - 44.07691857938178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "807940069", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION LUMIIN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729168891906738, - 43.446937038436744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "778151290", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", - "ref": "FRC2P000406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.130455146024364, - 48.92768371647863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1331726, - 48.92402509999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1331726, - 48.92402509999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1229985, - 48.9267881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1229985, - 48.9267881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330907, - 48.01435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU DU FEY", - "ref": "FRC2P005901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.330907, - 48.01435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CHATEAU DU FEY", - "ref": "FRC2P005901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.780463, - 43.84705599999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "340379932", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL DU MOULIN DAURE", - "ref": "FRC2P006001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.780463, - 43.84705599999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "340379932", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "HOTEL DU MOULIN DAURE", - "ref": "FRC2P006001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.863237, - 45.21972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "444393441", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CODERC CAMPING", - "ref": "FRC2P006101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.863237, - 45.21972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "444393441", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "CODERC CAMPING", - "ref": "FRC2P006101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.130455146024364, - 48.92768371647863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "217702380", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "MAIRIE - 77640", - "ref": "FRC2P005301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7711457, - 43.3193683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "SCI CHEVY", - "ref": "FRC2P006501", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7711457, - 43.3193683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "SCI CHEVY", - "ref": "FRC2P006502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.781515100000001, - 43.58764679999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "CJC RECORDING", - "ref": "FRC2P006301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.781515100000001, - 43.58764679999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "CJC RECORDING", - "ref": "FRC2P006302", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8056475, - 45.8960714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "HOTEL ST ANTOINE", - "ref": "FRC2P006601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8056475, - 45.8960714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "HOTEL ST ANTOINE", - "ref": "FRC2P006601", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4783344, - 43.3190604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "MC HOTELLERIE", - "ref": "FRC2P006401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4783344, - 43.3190604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "MC HOTELLERIE", - "ref": "FRC2P006401", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006707", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006706", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006705", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006705", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006704", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006704", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006703", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006703", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006701", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5652006, - 48.2028718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "GYROVOSGES", - "ref": "FRC2P006801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5652006, - 48.2028718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "GYROVOSGES", - "ref": "FRC2P006801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077468, - 49.905174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "AB DIEPPE", - "ref": "FRC2P006901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.077468, - 49.905174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "AB DIEPPE", - "ref": "FRC2P006901", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423507, - 49.8969455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "881560676", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "FELIS CANIS", - "ref": "FRC2P007001", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.394, - 43.6328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE", - "owner:ref:FR:SIREN": "750528960", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "Réseau de charge FASTHOTEL BLAGNAC", - "ref": "01FDJ49W5BNFBBW4HR43XBSXYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78494, - 49.518518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "215402611", - "email": "support@virta.global", - "phone": "0186472691", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93391388, - 43.81099781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "791245087", - "email": "support@virta.global", - "phone": "0186472720", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4546121, - 46.62349487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "530797752", - "email": "support@virta.global", - "phone": "0186472718", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18773817, - 44.75268759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "834207672", - "email": "support@virta.global", - "phone": "0186472717", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18773817, - 44.75268759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "834207672", - "email": "support@virta.global", - "phone": "0186472716", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.02692661, - 45.1910994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "315501726", - "email": "support@virta.global", - "phone": "0186472715", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.02692661, - 45.1910994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "315501726", - "email": "support@virta.global", - "phone": "0186472714", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23832843, - 44.73029836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "822373742", - "email": "support@virta.global", - "phone": "0186472713", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33611093, - 44.42680651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "390825354", - "email": "support@virta.global", - "phone": "0186472712", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33611093, - 44.42680651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "390825354", - "email": "support@virta.global", - "phone": "0186472711", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.3749664, - 41.6820949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "823002811", - "email": "support@virta.global", - "phone": "0186472710", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.3749664, - 41.6820949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "823002811", - "email": "support@virta.global", - "phone": "0186472709", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33468576, - 44.41770558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "343756904", - "email": "support@virta.global", - "phone": "0186472708", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.33468576, - 44.41770558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "343756904", - "email": "support@virta.global", - "phone": "0186472707", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52703596, - 46.41313532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "384598249", - "email": "support@virta.global", - "phone": "0186472706", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.52703596, - 46.41313532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "384598249", - "email": "support@virta.global", - "phone": "0186472705", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42539138, - 43.65237411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "815322201", - "email": "support@virta.global", - "phone": "0186472704", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.42539138, - 43.65237411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "815322201", - "email": "support@virta.global", - "phone": "0186472703", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7847036, - 45.80245775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "883425084", - "email": "support@virta.global", - "phone": "0186472702", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7847036, - 45.80245775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "883425084", - "email": "support@virta.global", - "phone": "0186472701", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.289881, - 44.792649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "378020168", - "email": "support@virta.global", - "phone": "0186472700", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.289881, - 44.792649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "378020168", - "email": "support@virta.global", - "phone": "0186472699", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.445075, - 41.995246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "301075065", - "email": "support@virta.global", - "phone": "0186472698", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.445074, - 41.995246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "301075065", - "email": "support@virta.global", - "phone": "0186472697", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.445073, - 41.995246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "301075065", - "email": "support@virta.global", - "phone": "0186472696", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.445072, - 41.995246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "301075065", - "email": "support@virta.global", - "phone": "0186472695", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.445071, - 41.995246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "301075065", - "email": "support@virta.global", - "phone": "0186472694", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.406844, - 46.187012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "440863561", - "email": "support@virta.global", - "phone": "0186472693", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.116399, - 45.022197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "512117862", - "email": "support@virta.global", - "phone": "0186472692", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93391388, - 43.81099781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "791245087", - "email": "support@virta.global", - "phone": "0186472719", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14350611, - 43.14288259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472749", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93391388, - 43.81099781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "791245087", - "email": "support@virta.global", - "phone": "0186472721", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.93391388, - 43.81099781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "791245087", - "email": "support@virta.global", - "phone": "0186472722", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14350611, - 43.14288259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472748", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.353438, - 44.409231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "480123603", - "email": "support@virta.global", - "phone": "0186472747", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.353438, - 44.409231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "480123603", - "email": "support@virta.global", - "phone": "0186472746", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21423544, - 44.89537348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "384395516", - "email": "support@virta.global", - "phone": "0186472745", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21423544, - 44.89537348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "384395516", - "email": "support@virta.global", - "phone": "0186472744", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20262039, - 44.90092439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "828318204", - "email": "support@virta.global", - "phone": "0186472743", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20262039, - 44.90092439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "828318204", - "email": "support@virta.global", - "phone": "0186472742", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17166083, - 44.43103518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472741", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17166083, - 44.43103518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472740", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.00205723, - 45.57975404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "529978405", - "email": "support@virta.global", - "phone": "0186472739", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.00205723, - 45.57975404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "529978405", - "email": "support@virta.global", - "phone": "0186472738", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2400218, - 44.45923178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472737", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2400218, - 44.45923178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472736", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2400218, - 44.45923178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472735", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2400218, - 44.45923178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472734", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02004486, - 42.77530709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "950016055", - "email": "support@virta.global", - "phone": "0186472733", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02004486, - 42.77530709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "950016055", - "email": "support@virta.global", - "phone": "0186472732", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1202879, - 46.81010295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472731", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1202879, - 46.81010295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472730", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35685396, - 43.9543369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472729", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.35685396, - 43.9543369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472728", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14394557, - 45.36995522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472727", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14394557, - 45.36995522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472726", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14394557, - 45.36995522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "327438560", - "email": "support@virta.global", - "phone": "0186472725", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.377925, - 46.17418428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "329554851", - "email": "support@virta.global", - "phone": "0186472724", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.377925, - 46.17418428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "329554851", - "email": "support@virta.global", - "phone": "0186472723", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78494, - 49.518518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "215402611", - "email": "support@virta.global", - "phone": "0186472690", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.994230270385742, - 44.07691857938178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "807940069", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "LUMIIN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316255993913532, - 48.87284863189276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.925962686538696, - 45.746076812151216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "448848283", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "STATION CIEL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316255993913532, - 48.87284863189276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "402143747", - "email": "contact@car2plug.fr", - "phone": "0988991011", - "network": "SUN DEVELOPPEMENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": " 24/7", - "start_date": "2021-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.630963, - 48.41844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "Wurth Erstein", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sun 07:00-19:00", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368877, - 49.18286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068559, - 44.550005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068559, - 44.550005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94637, - 48.202269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.972579, - 43.611481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.400349, - 43.549642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.400349, - 43.549642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8455834166546037, - 50.666256180641085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "415192202", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8445087136534122, - 50.66617982049264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "415192202", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.971536, - 48.626299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-TH 8:00-12:00,Mo-TH 14:00-19:00,Fr 9:00-12:00,Fr14:00-18:00,Sa 09:00-12:00,Sa14:00-17:00", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4587, - 43.53783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "397906264", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068559, - 44.550005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.740974, - 49.516179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348885488640659, - 48.38603775039389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "752933184", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814621642327829, - 46.08831777039237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "409179926", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2123569556846805, - 50.56848859815003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "489683078", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4961249380287276, - 48.678652435121194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "512678558", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 8:30-12:00,Mo 14:00-18:00,Tu-Fr 8:00-12:00,Tu-Fr14:00-18:00,Sa 08:30-12:00,Sa14:30-17:30", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2001838828882567, - 46.01405490199754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "830583381", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-FR 8:00-12:00,Mo-FR 14:00-18:00", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.430500000000005, - 43.57690340000002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "453406365", - "email": "psasupport@evbox.com", - "phone": "0986877186", - "network": "EVBOX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86, - 46.42 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "498014141", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068559, - 44.550005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.972579, - 43.611481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068559, - 44.550005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.741838, - 44.527159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451591, - 48.97995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451591, - 48.97995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068559, - 44.550005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "852425289", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.730036, - 48.101993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115675, - 49.39352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115675, - 49.39352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77321, - 45.672402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77321, - 45.672402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.741838, - 44.527159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.730036, - 48.101993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.741545, - 44.526897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.740974, - 49.516179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.740974, - 49.516179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.741545, - 44.526897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "668502966", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", - "start_date": "2022-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.971536, - 48.626299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-TH 8:00-12:00,Mo-TH 14:00-19:00,Fr 9:00-12:00,Fr14:00-18:00,Sa 09:00-12:00,Sa14:00-17:00", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.971536, - 48.626299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-TH 8:00-12:00,Mo-TH 14:00-19:00,Fr 9:00-12:00,Fr14:00-18:00,Sa 09:00-12:00,Sa14:00-17:00", - "start_date": "2022-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368877, - 49.18286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368877, - 49.18286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEENCO", - "owner:ref:FR:SIREN": "791432263", - "email": "franck.legardeur@zeenco.tech", - "phone": "0618727251", - "network": "ZEENCO", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145726, - 49.486737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "428099022", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Bulle de Linge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145726, - 49.486737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "428099022", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Bulle de Linge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.145726, - 49.486737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "428099022", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Bulle de Linge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75, - 48.41 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "413171711", - "email": "contact@evbox.com", - "network": "EVBOX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75, - 48.41 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "413171711", - "email": "contact@evbox.com", - "network": "EVBOX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8076714, - 45.7981775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "INOUID", - "owner:ref:FR:SIREN": "523603819", - "email": "Contact@inouid.com", - "phone": "0682800152", - "network": "QuincyPublic", - "ref": "01FBRQ3532D9RQ7W3DKXVQ7RS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8372308, - 46.3085443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "INOUID", - "owner:ref:FR:SIREN": "753827328", - "email": "Contact@inouid.com", - "phone": "0682800152", - "network": "Hotel Macon", - "ref": "01FBRNZA2J52JAYEAG7YXR7WXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8071364, - 45.7999825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "INOUID", - "owner:ref:FR:SIREN": "828349175", - "email": "Contact@inouid.com", - "phone": "0682800152", - "network": "Ax'stone", - "ref": "69*axstn*lim*1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19743601177825, - 44.993004231809124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "DE LEPERVANCHE Céline", - "owner:ref:FR:SIREN": "529349599", - "email": "lesjardinsdelasud@orange.fr", - "network": "Les Jardins de la Sud", - "ref": "EVB-P2020517", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.19743601177825, - 44.993004231809124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "DE LEPERVANCHE Céline", - "owner:ref:FR:SIREN": "529349599", - "email": "lesjardinsdelasud@orange.fr", - "network": "Les Jardins de la Sud", - "ref": "EVB-P2020517", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:00", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.166771, - 50.693723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "FXM Events", - "ref": "01F85704N16K75F2NGKV1AERPC", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.100756, - 49.113056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EGSM", - "owner:ref:FR:SIREN": "399831809", - "email": "jf.de@egsm.fr", - "phone": "038776969", - "network": "EGSM", - "ref": "399d4470-f5c3-11eb-9a03-0242ac130003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, 14:00-17:00", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.688881, - 49.140776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "COPRODEX", - "owner:ref:FR:SIREN": "410514319", - "email": "coprodex@coprodex.com", - "phone": "038729007", - "network": "COPRODEX", - "ref": "01F8SKQEQ9WHH6FRV6VTNW2ES9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo Fr 14:00-17:00", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4431105, - 48.919138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT", - "owner:ref:FR:SIREN": "842019317", - "email": "g.uppilirajan@waat.fr", - "phone": "146421897", - "network": "Réseau de recharge SAS PRIMARD", - "ref": "61081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4431105, - 48.919138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT", - "owner:ref:FR:SIREN": "842019318", - "email": "g.uppilirajan@waat.fr", - "phone": "146421898", - "network": "Réseau de recharge SAS PRIMARD", - "ref": "61082", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4431105, - 48.919138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT", - "owner:ref:FR:SIREN": "842019317", - "email": "g.uppilirajan@waat.fr", - "phone": "146421897", - "network": "Réseau de recharge SAS PRIMARD", - "ref": "61081", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4431105, - 48.919138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT", - "owner:ref:FR:SIREN": "842019319", - "email": "g.uppilirajan@waat.fr", - "phone": "146421899", - "network": "Réseau de recharge SAS PRIMARD", - "ref": "61083", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.394606, - 43.56689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE", - "owner:ref:FR:SIREN": "753022086", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "ACCIF TOULOUSE ", - "ref": "01FCMYGRABJTDCMWYM31ZQDEHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.59, - 48.15 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "433188018", - "email": "contact@evbox.com", - "phone": "02 23 25 08 86", - "network": "MBC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6, - 49.61 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "DALTONER CHERBOURG", - "owner:ref:FR:SIREN": "479246837", - "email": "denis.lot@daltoner.fr", - "phone": "0233440404", - "network": "DALTONER CHERBOURG", - "ref": "01FGQVYRS0FX7TJ3JE1DEKMBBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:00", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24189, - 48.033895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24189, - 48.033895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.095828, - 47.972872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163069, - 47.949564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163069, - 47.949564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172916, - 47.977284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172916, - 47.977284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237465, - 48.018384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237465, - 48.018384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Le mans sun ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.724781, - 48.108326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "L'incroyable", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.093535, - 49.430228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.038331, - 50.372075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.102055, - 50.399946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.102055, - 50.399946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.102472, - 50.396286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.102472, - 50.396286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.894763, - 50.423336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.894763, - 50.423336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.901209, - 50.424837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.901209, - 50.424837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.038331, - 50.372075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.035473, - 50.381443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.040881, - 50.375851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.196098, - 43.266711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.040881, - 50.375851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.035047, - 50.378089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.035047, - 50.378089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.035473, - 50.381443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.093459, - 49.45384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.030860517090839, - 50.37340163915224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.030860517090839, - 50.37340163915224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.03235, - 50.364271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.03235, - 50.364271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.093535, - 49.430228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.175758, - 48.766458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.093459, - 49.45384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968528, - 48.635862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6139677517069222, - 50.45591099689726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7212472222222224, - 48.1790417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7212472222222224, - 48.1790417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7316805, - 47.9749816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7316805, - 47.9749816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7316805, - 47.9749816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7316805, - 47.9749816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7316805, - 47.9749816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968528, - 48.635862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968528, - 48.635862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489767, - 48.584177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.115386, - 49.433287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489767, - 48.584177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489767, - 48.584177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.040212, - 48.909046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.040212, - 48.909046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.175758, - 48.766458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.196098, - 43.266711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.175758, - 48.766458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.10449, - 49.438526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.10449, - 49.438526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.115386, - 49.433287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6139677517069222, - 50.45591099689726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5753830764544885, - 48.65993572270077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.614797784474848, - 50.45384387673885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94251, - 48.284472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5295840174515463, - 48.678489499960584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-22:00", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5286632377885447, - 48.678389833990664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5286632377885447, - 48.678389833990664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5286632377885447, - 48.678389833990664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526362317964585, - 48.69077906864795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526362317964585, - 48.69077906864795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403842, - 48.6814842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403842, - 48.6814842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4245679, - 48.6848221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407719, - 48.673546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407719, - 48.673546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431342, - 48.681508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-19:00", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431342, - 48.681508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-19:00", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4077141243933076, - 48.68517050782172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4077141243933076, - 48.68517050782172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.614797784474848, - 50.45384387673885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5295840174515463, - 48.678489499960584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-22:00", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4245679, - 48.6848221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94251, - 48.284472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5586172119781576, - 48.66622067379457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6623570502624494, - 48.614318800000014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.581321738638749, - 50.46090694111128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.312264, - 48.0449181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-22:00", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.312264, - 48.0449181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-22:00", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12882767066976641, - 49.487331285074724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12882767066976641, - 49.487331285074724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12882767066976641, - 49.487331285074724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5753830764544885, - 48.65993572270077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5586172119781576, - 48.66622067379457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.12882767066976641, - 49.487331285074724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56593753620647, - 48.65956307159419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566489583236157, - 48.64892309996577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.581321738638749, - 50.46090694111128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.627516720238731, - 48.53187547443857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.627516720238731, - 48.53187547443857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566489583236157, - 48.64892309996577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6623570502624494, - 48.614318800000014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.568798248488855, - 48.66428455199971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.568798248488855, - 48.66428455199971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.56593753620647, - 48.65956307159419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2628, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2595, - 48.8433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2595, - 48.8433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2595, - 48.8433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858, - 48.863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2806, - 48.864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274, - 48.8603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274, - 48.8603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274, - 48.8603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274, - 48.8603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274, - 48.8603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274, - 48.8603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2806, - 48.864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2806, - 48.864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2806, - 48.864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2806, - 48.864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2628, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2628, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286851, - 48.870343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2628, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2628, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2843, - 48.8735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286851, - 48.870343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286851, - 48.870343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2636, - 48.8478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2636, - 48.8478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2636, - 48.8478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2636, - 48.8478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2636, - 48.8478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2636, - 48.8478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2754, - 48.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2754, - 48.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2754, - 48.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2754, - 48.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2754, - 48.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2754, - 48.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2996, - 48.8655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2996, - 48.8655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2996, - 48.8655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2996, - 48.8655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2996, - 48.8655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2628, - 48.8379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2806, - 48.864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2786938, - 48.859756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2843, - 48.8735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2786938, - 48.859756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2739245, - 48.8507539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2739245, - 48.8507539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2739245, - 48.8507539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2739245, - 48.8507539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2739245, - 48.8507539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2739245, - 48.8507539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2616981, - 48.8531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2616981, - 48.8531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2616981, - 48.8531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2616981, - 48.8531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2616981, - 48.8531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2616981, - 48.8531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295196, - 48.8713288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295196, - 48.8713288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295196, - 48.8713288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295196, - 48.8713288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295196, - 48.8713288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295196, - 48.8713288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2698931, - 48.8437929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2698931, - 48.8437929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2698931, - 48.8437929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2786938, - 48.859756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2786938, - 48.859756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2843, - 48.8735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286851, - 48.870343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2843, - 48.8735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2843, - 48.8735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2843, - 48.8735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2685, - 48.8534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2685, - 48.8534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2685, - 48.8534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2685, - 48.8534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2685, - 48.8534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2685, - 48.8534 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2927, - 48.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2927, - 48.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2927, - 48.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2927, - 48.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2927, - 48.8685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2745266, - 48.8478619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2745266, - 48.8478619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2745266, - 48.8478619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2745266, - 48.8478619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2745266, - 48.8478619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2786938, - 48.859756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2786938, - 48.859756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286851, - 48.870343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2768772, - 48.8538134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286851, - 48.870343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323452, - 48.8979743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323452, - 48.8979743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3160603, - 48.8884456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3160603, - 48.8884456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3160603, - 48.8884456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3160603, - 48.8884456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3160603, - 48.8884456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3160603, - 48.8884456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284095, - 48.88112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284095, - 48.88112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284095, - 48.88112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284095, - 48.88112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284095, - 48.88112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284095, - 48.88112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967633, - 48.8782587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967633, - 48.8782587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967633, - 48.8782587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967633, - 48.8782587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967633, - 48.8782587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967633, - 48.8782587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976445, - 48.8698929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976445, - 48.8698929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323452, - 48.8979743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323452, - 48.8979743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976445, - 48.8698929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323452, - 48.8979743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3222, - 48.8888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3222, - 48.8888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3222, - 48.8888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3222, - 48.8888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304, - 48.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304, - 48.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304, - 48.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304, - 48.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304, - 48.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304, - 48.8914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283, - 48.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283, - 48.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283, - 48.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283, - 48.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283, - 48.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3211581, - 48.8941653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3211581, - 48.8941653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3211581, - 48.8941653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3211581, - 48.8941653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3211581, - 48.8941653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323452, - 48.8979743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976445, - 48.8698929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976445, - 48.8698929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2915577, - 48.8724415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2762194, - 48.8658188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2698931, - 48.8437929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2768772, - 48.8538134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2768772, - 48.8538134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2768772, - 48.8538134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2768772, - 48.8538134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2768772, - 48.8538134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28423, - 48.8612923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28423, - 48.8612923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28423, - 48.8612923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28423, - 48.8612923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858795, - 48.8669712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858795, - 48.8669712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858795, - 48.8669712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858795, - 48.8669712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858795, - 48.8669712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2858795, - 48.8669712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2915577, - 48.8724415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2915577, - 48.8724415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2915577, - 48.8724415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2915577, - 48.8724415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2915577, - 48.8724415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2762194, - 48.8658188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2762194, - 48.8658188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2762194, - 48.8658188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.280347, - 48.867315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2723059, - 48.8478478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2723059, - 48.8478478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2723059, - 48.8478478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2723059, - 48.8478478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2723059, - 48.8478478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2723059, - 48.8478478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851211, - 48.8585701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2762194, - 48.8658188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2762194, - 48.8658188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2698931, - 48.8437929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292136, - 48.8454505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2698931, - 48.8437929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904053, - 48.854819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904053, - 48.854819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904053, - 48.854819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904053, - 48.854819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904053, - 48.854819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904053, - 48.854819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3045476, - 48.848923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3045476, - 48.848923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3045476, - 48.848923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3045476, - 48.848923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3045476, - 48.848923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3045476, - 48.848923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2943442, - 48.8383125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2943442, - 48.8383125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2943442, - 48.8383125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2943442, - 48.8383125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2943442, - 48.8383125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287503, - 48.8451076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287503, - 48.8451076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287503, - 48.8451076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2876, - 48.8407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2876, - 48.8407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2876, - 48.8407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2876, - 48.8407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2876, - 48.8407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2876, - 48.8407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2989, - 48.8287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2913, - 48.8512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295999, - 48.8304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287503, - 48.8451076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3048474, - 48.8319972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3217, - 48.8432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2920513, - 48.8425947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2920513, - 48.8425947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2920513, - 48.8425947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851648, - 48.835427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851648, - 48.835427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851648, - 48.835427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2851648, - 48.835427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2824849, - 48.8389208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2824849, - 48.8389208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2824849, - 48.8389208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2824849, - 48.8389208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2844167, - 48.8467033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2844167, - 48.8467033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2844167, - 48.8467033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2844167, - 48.8467033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986453, - 48.8395783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986453, - 48.8395783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986453, - 48.8395783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986453, - 48.8395783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986453, - 48.8395783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2892983, - 48.8388875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3213, - 48.8847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2920513, - 48.8425947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2920513, - 48.8425947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3048474, - 48.8319972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2920513, - 48.8425947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3048474, - 48.8319972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3048474, - 48.8319972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3048474, - 48.8319972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3048474, - 48.8319972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3126749, - 48.8385459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3059905, - 48.8373656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3059905, - 48.8373656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3059905, - 48.8373656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3059905, - 48.8373656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3059905, - 48.8373656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3059905, - 48.8373656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2848904, - 48.8425678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2848904, - 48.8425678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2848904, - 48.8425678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2848904, - 48.8425678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3217, - 48.8432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3217, - 48.8432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2719012, - 48.8509978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292136, - 48.8454505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3132661, - 48.8426446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*36", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3132661, - 48.8426446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*36", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3132661, - 48.8426446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*36", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3132661, - 48.8426446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*36", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3132661, - 48.8426446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*36", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3198109, - 48.8447061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3198109, - 48.8447061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3198109, - 48.8447061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3198109, - 48.8447061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3198109, - 48.8447061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3198109, - 48.8447061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2994811, - 48.8434786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2994811, - 48.8434786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2994811, - 48.8434786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2994811, - 48.8434786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2994811, - 48.8434786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3081344, - 48.8338872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3081344, - 48.8338872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3081344, - 48.8338872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3081344, - 48.8338872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2914295, - 48.8351985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292136, - 48.8454505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292136, - 48.8454505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2914295, - 48.8351985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292136, - 48.8454505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2719012, - 48.8509978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2719012, - 48.8509978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2719012, - 48.8509978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2856025, - 48.8566608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2856025, - 48.8566608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2856025, - 48.8566608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2856025, - 48.8566608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2856025, - 48.8566608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2856025, - 48.8566608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267881, - 48.85926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267881, - 48.85926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267881, - 48.85926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267881, - 48.85926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267881, - 48.85926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267881, - 48.85926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2640334, - 48.8452821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2640334, - 48.8452821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2640334, - 48.8452821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2640334, - 48.8452821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2640334, - 48.8452821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2640334, - 48.8452821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2914295, - 48.8351985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2914295, - 48.8351985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3217, - 48.8432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2847, - 48.8479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2847, - 48.8479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2847, - 48.8479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2847, - 48.8479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2953, - 48.8472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2953, - 48.8472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2953, - 48.8472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2953, - 48.8472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2953, - 48.8472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2953, - 48.8472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*26", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3026, - 48.8349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3026, - 48.8349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3026, - 48.8349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3026, - 48.8349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301, - 48.8483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301, - 48.8483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301, - 48.8483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301, - 48.8483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301, - 48.8483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301, - 48.8483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3217, - 48.8432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3217, - 48.8432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2847, - 48.8479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2847, - 48.8479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2914295, - 48.8351985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2787, - 48.8373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2914295, - 48.8351985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2796928, - 48.8439105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2796928, - 48.8439105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2796928, - 48.8439105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2796928, - 48.8439105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2796928, - 48.8439105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2796928, - 48.8439105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986736, - 48.8370178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986736, - 48.8370178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986736, - 48.8370178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2986736, - 48.8370178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2997986, - 48.851832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2997986, - 48.851832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2997986, - 48.851832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2997986, - 48.851832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2997986, - 48.851832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2787, - 48.8373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2787, - 48.8373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2787, - 48.8373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2787, - 48.8373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2787, - 48.8373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3222, - 48.8888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263132, - 48.898351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062001", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3213, - 48.8847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3708912, - 48.8821756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3790176, - 48.8765968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3790176, - 48.8765968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3790176, - 48.8765968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371162, - 48.899335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371162, - 48.899335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371162, - 48.899335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371162, - 48.899335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371162, - 48.899335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371162, - 48.899335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3782985, - 48.8727407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3782985, - 48.8727407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3782985, - 48.8727407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3782985, - 48.8727407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3782985, - 48.8727407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3936, - 48.886098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3936, - 48.886098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3936, - 48.886098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3936, - 48.886098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3936, - 48.886098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3936, - 48.886098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3790176, - 48.8765968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3708912, - 48.8821756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3708912, - 48.8821756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3906964, - 48.867322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3906964, - 48.867322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3906964, - 48.867322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3906964, - 48.867322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3906964, - 48.867322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399738, - 48.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4019645, - 48.8500605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4019645, - 48.8500605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4019645, - 48.8500605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4019645, - 48.8500605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4019645, - 48.8500605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4019645, - 48.8500605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3708912, - 48.8821756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3708912, - 48.8821756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3708912, - 48.8821756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405207, - 48.865359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3938, - 48.8818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3839, - 48.8792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3888, - 48.8886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3888, - 48.8886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3888, - 48.8886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3888, - 48.8886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3888, - 48.8886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3888, - 48.8886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3691, - 48.8917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3978, - 48.88101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3938, - 48.8818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3938, - 48.8818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3938, - 48.8818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3775942, - 48.891659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3866, - 48.8824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3866, - 48.8824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3866, - 48.8824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3866, - 48.8824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3866, - 48.8824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3866, - 48.8824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3916, - 48.8777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3916, - 48.8777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3916, - 48.8777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3916, - 48.8777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3916, - 48.8777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3812, - 48.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3812, - 48.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3812, - 48.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3812, - 48.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3812, - 48.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3812, - 48.8769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3938, - 48.8818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3938, - 48.8818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3906964, - 48.867322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405207, - 48.865359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3213, - 48.8847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400348, - 48.86959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3995098, - 48.8723314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3995098, - 48.8723314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3995098, - 48.8723314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3995098, - 48.8723314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3864659, - 48.8738701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3864659, - 48.8738701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3864659, - 48.8738701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3864659, - 48.8738701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3864659, - 48.8738701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3864659, - 48.8738701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4087, - 48.8657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4087, - 48.8657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4087, - 48.8657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4087, - 48.8657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4087, - 48.8657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4062, - 48.8495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4062, - 48.8495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4062, - 48.8495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4062, - 48.8495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4062, - 48.8495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4062, - 48.8495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3995098, - 48.8723314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400348, - 48.86959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3982, - 48.8519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400348, - 48.86959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2892983, - 48.8388875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3911798, - 48.8736473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3911798, - 48.8736473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3911798, - 48.8736473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4021436, - 48.8676044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4021436, - 48.8676044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4021436, - 48.8676044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4021436, - 48.8676044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402911, - 48.85844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402911, - 48.85844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402911, - 48.85844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402911, - 48.85844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402911, - 48.85844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402911, - 48.85844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3929721, - 48.8656837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3929721, - 48.8656837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3929721, - 48.8656837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3929721, - 48.8656837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3929721, - 48.8656837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400348, - 48.86959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400348, - 48.86959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3982, - 48.8519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3982, - 48.8519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405207, - 48.865359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3984912, - 48.8552253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4056437, - 48.8614319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4056437, - 48.8614319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4056437, - 48.8614319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4056437, - 48.8614319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4056437, - 48.8614319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4056437, - 48.8614319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38494, - 48.86986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38494, - 48.86986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38494, - 48.86986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38494, - 48.86986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38494, - 48.86986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38494, - 48.86986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3941433, - 48.8569151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3941433, - 48.8569151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3941433, - 48.8569151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3941433, - 48.8569151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3941433, - 48.8569151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3941433, - 48.8569151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405207, - 48.865359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405207, - 48.865359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405207, - 48.865359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3984912, - 48.8552253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3984912, - 48.8552253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3982, - 48.8519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3984912, - 48.8552253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3982, - 48.8519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3982, - 48.8519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4133, - 48.8492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4133, - 48.8492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4133, - 48.8492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4133, - 48.8492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4133, - 48.8492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4133, - 48.8492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809, - 48.8692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809, - 48.8692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809, - 48.8692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809, - 48.8692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809, - 48.8692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4092, - 48.8731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4092, - 48.8731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4092, - 48.8731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4092, - 48.8731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4092, - 48.8731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4092, - 48.8731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3984912, - 48.8552253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3984912, - 48.8552253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX20*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3978, - 48.88101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3978, - 48.88101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3978, - 48.88101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2849721, - 48.8854246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2956282, - 48.881032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2956282, - 48.881032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2956282, - 48.881032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2956282, - 48.881032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2956282, - 48.881032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2878557, - 48.8788442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2878557, - 48.8788442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2878557, - 48.8788442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2878557, - 48.8788442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2878557, - 48.8788442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2878557, - 48.8788442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2928, - 48.87683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2928, - 48.87683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2928, - 48.87683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2928, - 48.87683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2928, - 48.87683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2928, - 48.87683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2849721, - 48.8854246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2849721, - 48.8854246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2849721, - 48.8854246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330375, - 48.89919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330375, - 48.89919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330375, - 48.89919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330375, - 48.89919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330375, - 48.89919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330375, - 48.89919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423252, - 48.898303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2922036, - 48.8824249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2922036, - 48.8824249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2922036, - 48.8824249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2922036, - 48.8824249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2922036, - 48.8824249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2922036, - 48.8824249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2849721, - 48.8854246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2849721, - 48.8854246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3035012, - 48.8849507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3978, - 48.88101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3099, - 48.8809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3099, - 48.8809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3148, - 48.8935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3148, - 48.8935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3148, - 48.8935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3148, - 48.8935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2884, - 48.876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2884, - 48.876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2884, - 48.876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2884, - 48.876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2955, - 48.8867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2955, - 48.8867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2955, - 48.8867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2955, - 48.8867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2955, - 48.8867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2955, - 48.8867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3151, - 48.8863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3151, - 48.8863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3151, - 48.8863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3151, - 48.8863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3151, - 48.8863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3213, - 48.8847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3099, - 48.8809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3099, - 48.8809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29950738, - 48.88003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3099, - 48.8809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29950738, - 48.88003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29950738, - 48.88003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29950738, - 48.88003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29950738, - 48.88003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3050366, - 48.8876949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3050366, - 48.8876949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3050366, - 48.8876949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3050366, - 48.8876949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3242009, - 48.8957574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2899947, - 48.8794622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2899947, - 48.8794622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2899947, - 48.8794622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2899947, - 48.8794622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2899947, - 48.8794622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3099, - 48.8809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX17*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3649827, - 48.8990509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3649827, - 48.8990509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3649827, - 48.8990509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3305461, - 48.8844148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3305461, - 48.8844148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3305461, - 48.8844148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3305461, - 48.8844148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3305461, - 48.8844148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449781, - 48.8916426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449781, - 48.8916426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449781, - 48.8916426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449781, - 48.8916426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449781, - 48.8916426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449781, - 48.8916426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3394999, - 48.8932768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3394999, - 48.8932768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3394999, - 48.8932768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3394999, - 48.8932768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3394999, - 48.8932768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3331353, - 48.8920824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3475914, - 48.8850068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3649827, - 48.8990509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3475914, - 48.8850068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3740363, - 48.8989321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3740363, - 48.8989321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3740363, - 48.8989321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3740363, - 48.8989321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3740363, - 48.8989321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3740363, - 48.8989321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3730799, - 48.888195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388647, - 48.8794816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388647, - 48.8794816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388647, - 48.8794816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388647, - 48.8794816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX19*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3475914, - 48.8850068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3475914, - 48.8850068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3475914, - 48.8850068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3475914, - 48.8850068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3375536, - 48.8850802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3375536, - 48.8850802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3375536, - 48.8850802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3375536, - 48.8850802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3385, - 48.8913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3480345, - 48.8883596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3480345, - 48.8883596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3480345, - 48.8883596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3480345, - 48.8883596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3480345, - 48.8883596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3480345, - 48.8883596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3330069, - 48.8872522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3330069, - 48.8872522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3330069, - 48.8872522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3330069, - 48.8872522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3649827, - 48.8990509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3649827, - 48.8990509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3355, - 48.8949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3375536, - 48.8850802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3375536, - 48.8850802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3395, - 48.8823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3395, - 48.8823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3395, - 48.8823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3395, - 48.8823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3395, - 48.8823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3355, - 48.8949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3355, - 48.8949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3355, - 48.8949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3355, - 48.8949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3355, - 48.8949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35, - 48.8954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35, - 48.8954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35, - 48.8954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35, - 48.8954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35, - 48.8954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35, - 48.8954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591, - 48.8861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX18*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2892983, - 48.8388875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2595, - 48.8433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX16*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2892983, - 48.8388875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.311491, - 46.49502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080343", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908246, - 48.660713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080344", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.743748, - 50.405129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080345", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.743748, - 50.405129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080345", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.138174, - 47.716307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080342", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.711425, - 47.113401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080339", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.034861, - 47.503262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080340", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843354, - 46.692852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080341", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.743748, - 50.405129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080345", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.743748, - 50.405129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080345", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720103, - 49.520236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080294", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537903, - 49.125699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080354", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342533, - 48.026513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080355", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342533, - 48.026513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080355", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537903, - 49.125699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080354", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537903, - 49.125699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080354", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219342, - 49.21215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080356", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537903, - 49.125699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080354", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.538076, - 49.12686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080353", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.538076, - 49.12686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080353", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.840505, - 49.888161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080346", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6457, - 50.5759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080347", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6374, - 50.5766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080348", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090019, - 50.123916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080349", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090019, - 50.123916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080349", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090019, - 50.123916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080349", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090019, - 50.123916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080349", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090159, - 50.122864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080350", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090159, - 50.122864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090159, - 50.122864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080350", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.090159, - 50.122864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080350", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.580335, - 50.829441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080352", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.580335, - 50.829441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080352", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.580335, - 50.829441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080352", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.580335, - 50.829441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080352", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.538076, - 49.12686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080353", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.538076, - 49.12686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080353", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963146, - 46.097489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080288", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926063, - 45.672131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080072", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.538004, - 47.972518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080117", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.538004, - 47.972518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080117", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.538004, - 47.972518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080117", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926063, - 45.672131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080072", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926063, - 45.672131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080072", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926063, - 45.672131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080072", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.538004, - 47.972518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080117", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.496258, - 45.052079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080123", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.496258, - 45.052079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080123", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.254647, - 48.055847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080138", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.254647, - 48.055847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080138", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.254647, - 48.055847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080138", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.254647, - 48.055847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080138", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.254647, - 48.055847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080138", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.254647, - 48.055847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080138", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.145602, - 48.635405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080155", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.145602, - 48.635405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080155", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.145602, - 48.635405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080155", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.145602, - 48.635405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080155", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899358, - 42.779756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080162", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899358, - 42.779756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080162", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.874171, - 45.018137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080071", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6666, - 47.33821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080056", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.053499, - 49.179691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080063", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.074, - 50.540332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080064", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.074, - 50.540332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080064", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07922256090806372, - 43.22956922042935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080070", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963146, - 46.097489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080288", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78049, - 45.197767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080259", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78049, - 45.197767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080259", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78049, - 45.197767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080259", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78049, - 45.197767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080259", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.128131, - 49.402915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080198", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.655602, - 43.752619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080232", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.655602, - 43.752619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080232", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072417, - 45.877047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072417, - 45.877047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072417, - 45.877047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072417, - 45.877047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2892983, - 48.8388875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.795923, - 43.547473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080266", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963146, - 46.097489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080288", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963146, - 46.097489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080288", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963146, - 46.097489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080288", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.963146, - 46.097489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080288", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.128131, - 49.402915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080198", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111322, - 46.057755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080175", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608616, - 44.171001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080183", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316345, - 48.823581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080179", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.780632, - 48.635678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080178", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111322, - 46.057755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080175", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111322, - 46.057755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080175", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111322, - 46.057755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080175", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111322, - 46.057755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080175", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111322, - 46.057755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080175", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0144273068944765, - 47.419479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080173", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0144273068944765, - 47.419479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080173", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0144273068944765, - 47.419479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080173", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859716, - 47.976571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080172", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.608616, - 44.171001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080183", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.133697, - 43.869821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080188", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.133697, - 43.869821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080188", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6546462208168315, - 49.5713395660623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080191", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6546462208168315, - 49.5713395660623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080191", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363451, - 48.759935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363451, - 48.759935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363451, - 48.759935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363451, - 48.759935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363451, - 48.759935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.363451, - 48.759935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.863486341983179, - 48.26738780480035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080197", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286912, - 48.835709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303269, - 48.86937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3696815, - 48.878099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9010*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3696815, - 48.878099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9010*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335728, - 48.88264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9009*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335728, - 48.88264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9009*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335728, - 48.88264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9009*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303269, - 48.86937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303269, - 48.86937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309952, - 48.847931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309542, - 48.875854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309542, - 48.875854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309542, - 48.875854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321369, - 48.880698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321369, - 48.880698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321369, - 48.880698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9008*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3696815, - 48.878099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9010*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360103, - 48.875465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9010*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360103, - 48.875465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9010*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360103, - 48.875465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9010*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379874, - 48.858952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379874, - 48.858952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379874, - 48.858952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36554, - 48.865097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36554, - 48.865097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36554, - 48.865097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387548, - 48.854664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387548, - 48.854664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387548, - 48.854664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377939, - 48.865358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377939, - 48.865358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377939, - 48.865358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9011*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405248, - 48.834084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309952, - 48.847931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309952, - 48.847931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405248, - 48.834084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.341483, - 48.852459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.331346, - 48.852126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.331346, - 48.852126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.331346, - 48.852126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339865, - 48.84824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339865, - 48.84824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339865, - 48.84824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.341483, - 48.852459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31144092, - 48.8606571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.341483, - 48.852459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345342915215558, - 48.85061353189264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345342915215558, - 48.85061353189264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345342915215558, - 48.85061353189264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35242, - 48.84477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35242, - 48.84477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326367, - 48.851025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326367, - 48.851025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326367, - 48.851025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9006*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30437, - 48.857552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30437, - 48.857552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30437, - 48.857552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30749972, - 48.8497494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30749972, - 48.8497494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30749972, - 48.8497494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31368, - 48.852665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31368, - 48.852665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31368, - 48.852665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.327753, - 48.857124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.327753, - 48.857124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.327753, - 48.857124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31144092, - 48.8606571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31144092, - 48.8606571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9007*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405248, - 48.834084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38804, - 48.847446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345032, - 48.845715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325895, - 48.83086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323891, - 48.841198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323891, - 48.841198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323891, - 48.841198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336857, - 48.824388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336857, - 48.824388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336857, - 48.824388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325895, - 48.83086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.358146, - 48.826039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325895, - 48.83086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367798, - 48.82312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367798, - 48.82312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*07", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367798, - 48.82312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343366, - 48.826504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343366, - 48.826504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320052, - 48.831448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320052, - 48.831448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320052, - 48.831448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9014*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279884, - 48.846214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279884, - 48.846214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279884, - 48.846214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320272, - 48.843753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320272, - 48.843753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320272, - 48.843753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300643, - 48.828454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300643, - 48.828454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300643, - 48.828454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286931, - 48.841663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286931, - 48.841663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286931, - 48.841663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305529, - 48.834705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305529, - 48.834705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343366, - 48.826504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.358146, - 48.826039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38804, - 48.847446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389173, - 48.833603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397822, - 48.839947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.411238, - 48.845265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.411238, - 48.845265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.411238, - 48.845265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389173, - 48.833603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389173, - 48.833603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374877, - 48.846295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.358146, - 48.826039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374877, - 48.846295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374877, - 48.846295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.401736, - 48.847485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.401736, - 48.847485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.401736, - 48.847485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.38804, - 48.847446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397822, - 48.839947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*07", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397822, - 48.839947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3748828, - 48.8412037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*08", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3748828, - 48.8412037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*08", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3748828, - 48.8412037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9012*08", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372971, - 48.822432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372971, - 48.822432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372971, - 48.822432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363025, - 48.832893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363025, - 48.832893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363025, - 48.832893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34965, - 48.835499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34965, - 48.835499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34965, - 48.835499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343626, - 48.82085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343626, - 48.82085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343626, - 48.82085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9013*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35242, - 48.84477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345032, - 48.845715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97228, - 42.951091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080363", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641518, - 47.819657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080364", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641518, - 47.819657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080364", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641518, - 47.819657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080364", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641518, - 47.819657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080364", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641518, - 47.819657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080364", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97228, - 42.951091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080363", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97228, - 42.951091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080363", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97228, - 42.951091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080363", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.97228, - 42.951091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080363", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641518, - 47.819657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080364", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4519, - 43.4155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080371", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.036728, - 45.001584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080372", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.295566333126504, - 45.524520306313626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080359", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.295566333126504, - 45.524520306313626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080359", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.295566333126504, - 45.524520306313626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080359", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.295566333126504, - 45.524520306313626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080359", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.365282, - 48.761676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080358", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.218275, - 49.211506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080357", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.826153, - 47.135404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080361", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.604571, - 45.894616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080362", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345032, - 48.845715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9005*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.354652, - 43.346007 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01789", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34046, - 48.86003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9001*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34556, - 48.854057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9001*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34556, - 48.854057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9001*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34556, - 48.854057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9001*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.362246, - 43.235483 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01788", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.362246, - 43.235483 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01788", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.354652, - 43.346007 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01789", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3953496, - 43.2674985 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P00954", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.474731, - 43.30344 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01734", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.474731, - 43.30344 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01734", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.591773, - 43.246902 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01489", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.591773, - 43.246902 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P01489", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3953496, - 43.2674985 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P00954", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3953496, - 43.2674985 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P00954", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34046, - 48.86003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9001*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34046, - 48.86003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9001*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33321, - 48.870628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33321, - 48.870628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33321, - 48.870628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343436, - 48.865311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343436, - 48.865311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.343436, - 48.865311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342244, - 48.865788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342244, - 48.865788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342244, - 48.865788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9002*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.359043, - 48.864719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9003*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.359043, - 48.864719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9003*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.359043, - 48.864719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9003*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3615763, - 48.8502305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9004*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3615763, - 48.8502305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9004*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3615763, - 48.8502305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9004*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3953496, - 43.2674985 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P00954", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.369344884371708, - 43.31506007724927 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P00802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.369344884371708, - 43.31506007724927 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FR*TCB*P00802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.244126, - 49.119763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080374", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.246004, - 49.119215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080373", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.507557, - 44.199678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF088576", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867226, - 44.866331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058969", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443222, - 48.595281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058968", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.722189, - 49.523482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058967", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.198907, - 47.975069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058931", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.198907, - 47.975069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058931", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.382357, - 47.768193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059010", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865283, - 46.418606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059190", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186405, - 43.589684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059189", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186405, - 43.589684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059189", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186405, - 43.589684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059189", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186405, - 43.589684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059189", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.186405, - 43.589684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059189", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.133269952383021, - 43.713083462685034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059051", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.836437, - 46.963869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059042", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.468731, - 47.821635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042589", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241364539907534, - 48.21135002599696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042236", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241364539907534, - 48.21135002599696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042236", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.335014, - 49.78609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042331", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.335014, - 49.78609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042331", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.335014, - 49.78609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042331", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.335014, - 49.78609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042331", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.468731, - 47.821635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042589", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.507334, - 44.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042677", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5132, - 47.1617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042595", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5132, - 47.1617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042595", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5132, - 47.1617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042595", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5132, - 47.1617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042595", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.507334, - 44.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042677", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.507334, - 44.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042677", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241364539907534, - 48.21135002599696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042236", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241364539907534, - 48.21135002599696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042236", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.520438, - 48.436347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF039295", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.520438, - 48.436347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF039295", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1651, - 49.1295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF037072", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096547, - 45.772967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF026412", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096547, - 45.772967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF026412", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.719853, - 48.981678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF011512", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.719853, - 48.981678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF011512", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.719853, - 48.981678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF011512", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.719853, - 48.981678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF011512", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.507334, - 44.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF042677", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.709794, - 48.707985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF050214", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.410002, - 45.442142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23132115, - 48.8398361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058016", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.410002, - 45.442142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.410002, - 45.442142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058500", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.709794, - 48.707985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF050214", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.410002, - 45.442142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058500", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.383225, - 43.316251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058543", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.383225, - 43.316251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058543", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.144751, - 48.891905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058742", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.669435, - 47.789562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF058911", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.024536, - 50.61693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.389485, - 49.173149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF051024", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12959, - 45.7547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF050499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12959, - 45.7547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF050499", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112511, - 48.550222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF050462", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.112511, - 48.550222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF050462", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.406246, - 45.850306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059748", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596739, - 43.422748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059743", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596739, - 43.422748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059743", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596739, - 43.422748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059743", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596739, - 43.422748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059743", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745091, - 48.83022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059775", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00808, - 47.280611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059916", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.667119, - 44.85025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059964", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.667119, - 44.85025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059964", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173572, - 48.780399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059779", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247547, - 48.891207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059983", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098026, - 48.089376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059994", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098026, - 48.089376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059994", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098026, - 48.089376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059994", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.599122, - 43.422829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059903", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.599122, - 43.422829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059903", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.599122, - 43.422829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059903", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.599122, - 43.422829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059903", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252268, - 48.055456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059902", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252268, - 48.055456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252268, - 48.055456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252268, - 48.055456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252268, - 48.055456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059902", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.252268, - 48.055456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059902", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12203, - 47.325805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059797", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181563, - 48.986926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059792", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.726344, - 48.107428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059786", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.726344, - 48.107428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059786", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173572, - 48.780399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059779", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173572, - 48.780399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059779", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173572, - 48.780399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059779", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.630401, - 47.167146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059736", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360609, - 48.816556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059511", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.912803, - 43.60815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059558", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1364, - 47.7167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992246, - 43.421975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059599", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670919, - 43.46707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059499", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092478, - 43.216189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059472", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092478, - 43.216189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059472", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092478, - 43.216189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059472", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092478, - 43.216189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059472", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092478, - 43.216189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059472", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.092478, - 43.216189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059472", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111099, - 49.403871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111099, - 49.403871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059380", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111099, - 49.403871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059380", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.111099, - 49.403871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059380", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.449003, - 43.8755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1364, - 47.7167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1364, - 47.7167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059600", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1364, - 47.7167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059600", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212535, - 45.613803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059672", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776472, - 47.473807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059694", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.858496, - 47.977888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059671", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.162850603858983, - 49.10100138963425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059628", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812266, - 48.961863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059614", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.812266, - 48.961863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059614", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259203, - 43.391046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059602", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.076274, - 49.444077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010263", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.489418, - 47.265314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010132", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.489418, - 47.265314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF010132", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.32577, - 48.584798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078244", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.926765, - 47.337545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078333", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241010412111203, - 48.214366530490125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078386", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241010412111203, - 48.214366530490125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078386", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241010412111203, - 48.214366530490125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078386", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.241010412111203, - 48.214366530490125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078386", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.493363, - 46.114344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078387", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0686, - 48.972589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078531", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0686, - 48.972589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078531", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.431166, - 44.979033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078546", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150559, - 48.652612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078075", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149616, - 49.487559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078171", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149616, - 49.487559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078171", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149616, - 49.487559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078171", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.070386, - 45.844552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078118", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150559, - 48.652612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078075", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150559, - 48.652612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078075", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150559, - 48.652612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078075", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150559, - 48.652612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078075", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150559, - 48.652612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078075", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.905094, - 45.739317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078069", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.905094, - 45.739317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078069", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3735, - 48.9003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078062", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375428, - 48.900638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078061", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827109, - 45.589631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078183", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827109, - 45.589631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078183", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827109, - 45.589631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078183", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827109, - 45.589631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078183", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204589, - 49.609844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078218", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31121, - 43.86441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078230", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.593513, - 46.715962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078238", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.593513, - 46.715962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078238", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.529364, - 44.231895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078243", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.32789, - 49.32443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078544", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.431166, - 44.979033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078546", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623604, - 45.278781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838227, - 46.96323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080041", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.269559, - 43.721222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078611", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.269559, - 43.721222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078611", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.269559, - 43.721222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078611", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.269559, - 43.721222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078611", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504672, - 49.592204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078601", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.172111, - 47.42224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080042", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.172111, - 47.42224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080042", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.848176, - 43.84322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080044", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.850927825, - 43.84343386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080045", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.850927825, - 43.84343386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080045", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.850927825, - 43.84343386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080045", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.850927825, - 43.84343386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080045", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769017, - 45.80924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080046", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769017, - 45.80924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080046", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769017, - 45.80924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080046", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769017, - 45.80924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080046", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742603853735758, - 50.40453203652518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080047", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742603853735758, - 50.40453203652518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080047", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.431166, - 44.979033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078546", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.125336, - 48.456669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078556", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.125336, - 48.456669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078556", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.125336, - 48.456669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078556", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.125336, - 48.456669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078556", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50616, - 44.87366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078551", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50616, - 44.87366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078551", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50616, - 44.87366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078551", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.50616, - 44.87366 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078551", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.431166, - 44.979033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078546", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.035532, - 43.589282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078564", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.80428, - 43.35267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078569", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26627, - 48.835002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078037", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.900075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062209", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.900075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062209", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.900075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062209", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39864, - 43.5245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF001019", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826339, - 45.590873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062085", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826339, - 45.590873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062085", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826339, - 45.590873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062085", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826339, - 45.590873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062085", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.826339, - 45.590873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062085", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098026, - 48.089376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF059994", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.52491, - 48.855643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062228", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39864, - 43.5245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF001019", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907771, - 44.94012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907771, - 44.94012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007357", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436995, - 44.645735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007451", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623604, - 45.278781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007502", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623604, - 45.278781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623604, - 45.278781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007502", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623604, - 45.278781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623604, - 45.278781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007502", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907771, - 44.94012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007357", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907771, - 44.94012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007357", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907771, - 44.94012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007357", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907771, - 44.94012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007357", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34749, - 48.758095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007060", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193534, - 43.589351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007052", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193534, - 43.589351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007052", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193534, - 43.589351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007052", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193534, - 43.589351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007052", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193534, - 43.589351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF007052", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83576, - 45.6516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006467", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.742822, - 48.829064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062704", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.453912, - 43.291896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF067705", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.453912, - 43.291896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF067705", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.494, - 46.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070668", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.494, - 46.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070668", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.494, - 46.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070668", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.494, - 46.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070668", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.062407, - 50.650931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF074566", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.296055, - 46.20308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF076523", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.296055, - 46.20308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF076523", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00055, - 44.9997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF077241", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00055, - 44.9997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF077241", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37080308694003083, - 46.29755602592633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF078016", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098658, - 48.090032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069303", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098658, - 48.090032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069303", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098658, - 48.090032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069303", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.098658, - 48.090032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069303", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.016955, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF069703", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.07982, - 44.329297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070002", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.509803, - 45.541115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070003", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.11733, - 46.057926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF070641", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305529, - 48.834705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.864688, - 49.361312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080261", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286912, - 48.835709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3719914, - 48.86023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374203, - 48.85579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3719914, - 48.86023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3719914, - 48.86023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3719914, - 48.86023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3719914, - 48.86023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3719914, - 48.86023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3664376, - 48.8657658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390264, - 48.8577957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3664376, - 48.8657658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3664376, - 48.8657658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3664376, - 48.8657658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390264, - 48.8577957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390264, - 48.8577957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390264, - 48.8577957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374203, - 48.85579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374203, - 48.85579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.374203, - 48.85579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37139, - 48.857259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37139, - 48.857259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37139, - 48.857259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37139, - 48.857259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397761, - 48.84948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397761, - 48.84948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397761, - 48.84948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397761, - 48.84948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397761, - 48.84948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397761, - 48.84948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809277, - 48.8615346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809277, - 48.8615346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809277, - 48.8615346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3809277, - 48.8615346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390264, - 48.8577957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3825248, - 48.8561529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3830368, - 48.8525733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36289, - 48.87484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36289, - 48.87484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36289, - 48.87484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36289, - 48.87484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36289, - 48.87484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36289, - 48.87484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.348162, - 48.87517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3825248, - 48.8561529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.348162, - 48.87517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.348162, - 48.87517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.348162, - 48.87517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3551424, - 48.8740698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3551424, - 48.8740698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3551424, - 48.8740698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3783382, - 48.8553267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384125, - 48.858606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3825248, - 48.8561529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3825248, - 48.8561529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3825248, - 48.8561529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3825248, - 48.8561529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3830368, - 48.8525733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3830368, - 48.8525733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3509617, - 48.8801236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4050137, - 48.8415951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3878529, - 48.839191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3878529, - 48.839191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3878529, - 48.839191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3878529, - 48.839191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3878529, - 48.839191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3878529, - 48.839191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4050137, - 48.8415951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3862243, - 48.8632221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4050137, - 48.8415951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4050137, - 48.8415951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4050137, - 48.8415951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3862243, - 48.8632221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3862243, - 48.8632221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3862243, - 48.8632221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3922556, - 48.8364094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3922556, - 48.8364094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3922556, - 48.8364094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3922556, - 48.8364094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3922556, - 48.8364094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3856322, - 48.8473293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3856322, - 48.8473293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3856322, - 48.8473293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3856322, - 48.8473293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3856322, - 48.8473293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407044, - 48.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407044, - 48.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407044, - 48.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407044, - 48.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407044, - 48.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407044, - 48.8444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367915, - 48.84837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3862243, - 48.8632221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3713985, - 48.8640621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3830368, - 48.8525733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3923486, - 48.853661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36784, - 48.86661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36784, - 48.86661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36784, - 48.86661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36784, - 48.86661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3923486, - 48.853661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3923486, - 48.853661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3923486, - 48.853661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3713985, - 48.8640621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371679, - 48.8690795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371679, - 48.8690795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371679, - 48.8690795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371679, - 48.8690795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371679, - 48.8690795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3830368, - 48.8525733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36784, - 48.86661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36784, - 48.86661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376434, - 48.85189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376434, - 48.85189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376434, - 48.85189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376434, - 48.85189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376434, - 48.85189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387246, - 48.8499672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387246, - 48.8499672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387246, - 48.8499672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387246, - 48.8499672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387246, - 48.8499672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3713985, - 48.8640621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3713985, - 48.8640621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3713985, - 48.8640621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286912, - 48.835709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3713985, - 48.8640621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3551424, - 48.8740698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3509617, - 48.8801236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312597, - 48.87006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3338862, - 48.8716413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3466528, - 48.8735894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3466528, - 48.8735894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3338862, - 48.8716413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3338862, - 48.8716413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3338862, - 48.8716413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3338862, - 48.8716413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336666, - 48.88109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3347774, - 48.878643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336666, - 48.88109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336666, - 48.88109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336666, - 48.88109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336666, - 48.88109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3347774, - 48.878643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3347774, - 48.878643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3466528, - 48.8735894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3466528, - 48.8735894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3466528, - 48.8735894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3466528, - 48.8735894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326691, - 48.86972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326691, - 48.86972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326691, - 48.86972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326691, - 48.86972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454871, - 48.8829733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342083, - 48.875464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342083, - 48.875464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3347774, - 48.878643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3382898, - 48.875921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342083, - 48.875464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310832, - 48.8778333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3082976, - 48.8761878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3082976, - 48.8761878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3082976, - 48.8761878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310832, - 48.8778333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310832, - 48.8778333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310832, - 48.8778333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310832, - 48.8778333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3382898, - 48.875921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310832, - 48.8778333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3226488, - 48.870601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3226488, - 48.870601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3226488, - 48.870601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3226488, - 48.870601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3226488, - 48.870601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3082976, - 48.8761878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3082976, - 48.8761878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3082976, - 48.8761878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326167, - 48.87236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326167, - 48.87236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326167, - 48.87236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326167, - 48.87236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326167, - 48.87236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326167, - 48.87236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3283632, - 48.8804478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3382898, - 48.875921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342083, - 48.875464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342083, - 48.875464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3509617, - 48.8801236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372482, - 48.87179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3629571, - 48.8814921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3629571, - 48.8814921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3629571, - 48.8814921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3629571, - 48.8814921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372482, - 48.87179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372482, - 48.87179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372482, - 48.87179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372482, - 48.87179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364206, - 48.87119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364206, - 48.87119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364206, - 48.87119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364206, - 48.87119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364206, - 48.87119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3629571, - 48.8814921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354076, - 48.87081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354076, - 48.87081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354076, - 48.87081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354076, - 48.87081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372715, - 48.87565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372715, - 48.87565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372715, - 48.87565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372715, - 48.87565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372715, - 48.87565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3523208, - 48.8750753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3523208, - 48.8750753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3523208, - 48.8750753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3523208, - 48.8750753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3523208, - 48.8750753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3523208, - 48.8750753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3509617, - 48.8801236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364206, - 48.87119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342083, - 48.875464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3409177, - 48.8777212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3317475, - 48.8806436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3317475, - 48.8806436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3317475, - 48.8806436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3409177, - 48.8777212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3409177, - 48.8777212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3409177, - 48.8777212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3409177, - 48.8777212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3409177, - 48.8777212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3387762, - 48.8723178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3387762, - 48.8723178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3387762, - 48.8723178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3387762, - 48.8723178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3387762, - 48.8723178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3317475, - 48.8806436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3317475, - 48.8806436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3317475, - 48.8806436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX09*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3600462, - 48.8702567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3600462, - 48.8702567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3600462, - 48.8702567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3600462, - 48.8702567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3587236, - 48.8750762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3587236, - 48.8750762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3587236, - 48.8750762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3587236, - 48.8750762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3587236, - 48.8750762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3587236, - 48.8750762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366288, - 48.87237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX10*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367915, - 48.84837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367915, - 48.84837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367915, - 48.84837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408664, - 48.8383124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3216963, - 48.8283698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3216963, - 48.8283698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3216963, - 48.8283698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408664, - 48.8383124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408664, - 48.8383124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408664, - 48.8383124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408664, - 48.8383124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364308, - 48.824068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408664, - 48.8383124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336613, - 48.82844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336613, - 48.82844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336613, - 48.82844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336613, - 48.82844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336613, - 48.82844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608, - 48.83273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3297831, - 48.8348549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3297831, - 48.8348549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3297831, - 48.8348549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3297831, - 48.8348549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3297831, - 48.8348549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3297831, - 48.8348549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323305, - 48.842173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323305, - 48.842173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323305, - 48.842173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323305, - 48.842173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336613, - 48.82844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364308, - 48.824068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323305, - 48.842173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580488, - 48.8260824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3721949, - 48.8279725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3721949, - 48.8279725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3721949, - 48.8279725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3721949, - 48.8279725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3721949, - 48.8279725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580488, - 48.8260824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580488, - 48.8260824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364308, - 48.824068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580488, - 48.8260824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580488, - 48.8260824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3580488, - 48.8260824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3424498, - 48.8262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3424498, - 48.8262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3424498, - 48.8262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3721949, - 48.8279725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624101, - 48.8328237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624101, - 48.8328237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624101, - 48.8328237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624101, - 48.8328237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624101, - 48.8328237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624101, - 48.8328237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3592348, - 48.8365583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3592348, - 48.8365583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3592348, - 48.8365583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3592348, - 48.8365583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*19", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354296, - 48.82325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354296, - 48.82325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354296, - 48.82325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.354296, - 48.82325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*20", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364308, - 48.824068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364308, - 48.824068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*21", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323305, - 48.842173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3202972, - 48.8318566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367915, - 48.84837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2788853, - 48.8325995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322823, - 48.8230593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322823, - 48.8230593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322823, - 48.8230593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322823, - 48.8230593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322823, - 48.8230593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322823, - 48.8230593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28136, - 48.841403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273328, - 48.83984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273328, - 48.83984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273328, - 48.83984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273328, - 48.83984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3038076, - 48.8458068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3202972, - 48.8318566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3301676, - 48.8395108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.337229, - 48.83912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.337229, - 48.83912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.337229, - 48.83912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.337229, - 48.83912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.337229, - 48.83912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.337229, - 48.83912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3301676, - 48.8395108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3301676, - 48.8395108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3301676, - 48.8395108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3301676, - 48.8395108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3301676, - 48.8395108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3202972, - 48.8318566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3202972, - 48.8318566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237355, - 48.8266807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237355, - 48.8266807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237355, - 48.8266807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237355, - 48.8266807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237355, - 48.8266807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237355, - 48.8266807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313088, - 48.83126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273328, - 48.83984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX15*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3370783, - 48.8207604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX14*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3424498, - 48.8262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3424498, - 48.8262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3424498, - 48.8262319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4022445, - 48.8373149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3850356, - 48.8355193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3850356, - 48.8355193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3850356, - 48.8355193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3850356, - 48.8355193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4002905, - 48.8351899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4022445, - 48.8373149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4022445, - 48.8373149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4022445, - 48.8373149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4022445, - 48.8373149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4022445, - 48.8373149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378739, - 48.8403578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3665764, - 48.8268565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3665764, - 48.8268565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3665764, - 48.8268565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3665764, - 48.8268565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3665764, - 48.8268565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3810867, - 48.8276393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389211, - 48.84154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.409631, - 48.84071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3953738, - 48.8455775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3953738, - 48.8455775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3953738, - 48.8455775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3953738, - 48.8455775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3953738, - 48.8455775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367915, - 48.84837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389211, - 48.84154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389211, - 48.84154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389211, - 48.84154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389211, - 48.84154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389211, - 48.84154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388111, - 48.8334137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.410751, - 48.846304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.410751, - 48.846304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.410751, - 48.846304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.410751, - 48.846304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.400428, - 48.8406851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX12*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3724643, - 48.8362302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379246, - 48.83171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379246, - 48.83171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379246, - 48.83171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379246, - 48.83171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3724643, - 48.8362302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3724643, - 48.8362302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3724643, - 48.8362302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353056, - 48.8345242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353056, - 48.8345242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353056, - 48.8345242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353056, - 48.8345242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353056, - 48.8345242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353056, - 48.8345242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379246, - 48.83171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379246, - 48.83171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3512076, - 48.8204223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3512076, - 48.8204223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3512076, - 48.8204223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3512076, - 48.8204223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3512076, - 48.8204223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3512076, - 48.8204223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3460584, - 48.8310493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3460584, - 48.8310493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3460584, - 48.8310493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3460584, - 48.8310493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3460584, - 48.8310493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3460584, - 48.8310493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3810867, - 48.8276393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3810867, - 48.8276393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3810867, - 48.8276393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3643333, - 48.8205622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3643333, - 48.8205622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3643333, - 48.8205622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.356917, - 48.8303916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372548, - 48.83186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345853, - 48.82195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345853, - 48.82195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345853, - 48.82195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345853, - 48.82195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345853, - 48.82195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345853, - 48.82195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3446053, - 48.8351639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3446053, - 48.8351639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3446053, - 48.8351639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3446053, - 48.8351639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3446053, - 48.8351639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.356917, - 48.8303916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3643333, - 48.8205622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.356917, - 48.8303916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3753988, - 48.8231521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3537665, - 48.8295778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3537665, - 48.8295778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3537665, - 48.8295778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3537665, - 48.8295778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3537665, - 48.8295778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3537665, - 48.8295778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX13*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3226488, - 48.870601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*18", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371679, - 48.8690795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX11*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312597, - 48.87006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273944, - 48.859184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3437342, - 48.8640888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3437342, - 48.8640888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449501, - 48.8588109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449501, - 48.8588109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449501, - 48.8588109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449501, - 48.8588109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449501, - 48.8588109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3449501, - 48.8588109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3329713, - 48.8648594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3329713, - 48.8648594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3329713, - 48.8648594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3329713, - 48.8648594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3329713, - 48.8648594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3329713, - 48.8648594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3393006, - 48.8624631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3437342, - 48.8640888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3437342, - 48.8640888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314856, - 48.8642939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2558389615, - 48.84697366289495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAE*PDA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2558389615, - 48.84697366289495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAE*PDA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2558389615, - 48.84697366289495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAE*PDA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2558389615, - 48.84697366289495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAE*PDA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338973, - 48.8415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314856, - 48.8642939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3538696405462756, - 48.85679604727558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAG*LOB", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314856, - 48.8642939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314856, - 48.8642939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3393006, - 48.8624631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3393006, - 48.8624631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3393006, - 48.8624631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3320835, - 48.8699261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344388, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344388, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344388, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3320835, - 48.8699261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3320835, - 48.8699261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3320835, - 48.8699261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312597, - 48.87006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344388, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3320835, - 48.8699261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454538, - 48.8704209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454538, - 48.8704209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454538, - 48.8704209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454538, - 48.8704209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3454538, - 48.8704209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344388, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408933, - 48.8705626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34681, - 48.85788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423247, - 48.8696994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34681, - 48.85788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34681, - 48.85788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34681, - 48.85788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34681, - 48.85788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX01*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423247, - 48.8696994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423247, - 48.8696994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3423247, - 48.8696994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408933, - 48.8705626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3508835, - 48.8680082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3508835, - 48.8680082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3508835, - 48.8680082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3508835, - 48.8680082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408933, - 48.8705626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3408933, - 48.8705626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2558389615, - 48.84697366289495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PHBSAE*PDA", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41177, - 48.863766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41177, - 48.863766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319768, - 48.882718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313751, - 48.881168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313751, - 48.881168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.302442, - 48.879654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.302442, - 48.879654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.302442, - 48.879654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319768, - 48.882718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319768, - 48.882718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297463, - 48.885689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33891, - 48.889731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33891, - 48.889731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33891, - 48.889731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352758, - 48.897671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352758, - 48.897671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352758, - 48.897671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313751, - 48.881168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3564553, - 48.8512525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34066, - 48.89311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268339, - 48.846761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*09", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273944, - 48.859184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258213, - 48.846653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*08", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258213, - 48.846653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*08", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258213, - 48.846653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*08", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268339, - 48.846761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*09", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.268339, - 48.846761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*09", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286938, - 48.883282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297463, - 48.885689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286938, - 48.883282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286938, - 48.883282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293606, - 48.878965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293606, - 48.878965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293606, - 48.878965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297463, - 48.885689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9017*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34066, - 48.89311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34066, - 48.89311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41177, - 48.863766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405196, - 48.874134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371768, - 48.889011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371768, - 48.889011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397724, - 48.86424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397724, - 48.86424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.397724, - 48.86424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405196, - 48.874134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.405196, - 48.874134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39182, - 48.8778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378283, - 48.872905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378283, - 48.872905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378283, - 48.872905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403802, - 48.857094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403802, - 48.857094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403802, - 48.857094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9020*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371768, - 48.889011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39182, - 48.8778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35423, - 48.89061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398476, - 48.880421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35423, - 48.89061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35423, - 48.89061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9018*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.369961, - 48.88472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.369961, - 48.88472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.369961, - 48.88472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398476, - 48.880421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398476, - 48.880421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39182, - 48.8778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.382705, - 48.882794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.382705, - 48.882794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.382705, - 48.882794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388149, - 48.88842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388149, - 48.88842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388149, - 48.88842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9019*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335097, - 48.868181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335097, - 48.868181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335097, - 48.868181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3476575, - 48.8397733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3476575, - 48.8397733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3476575, - 48.8397733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3476575, - 48.8397733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3476575, - 48.8397733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3472476, - 48.8513879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3564553, - 48.8512525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3469365, - 48.8479993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3524539504414306, - 48.84116058051008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3476575, - 48.8397733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3472476, - 48.8513879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3524539504414306, - 48.84116058051008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3522773, - 48.8444276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3444286, - 48.8499024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3444286, - 48.8499024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3444286, - 48.8499024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3522773, - 48.8444276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3522773, - 48.8444276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3522773, - 48.8444276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3522773, - 48.8444276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3472476, - 48.8513879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3430684, - 48.8420054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3430684, - 48.8420054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3430684, - 48.8420054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3430684, - 48.8420054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3430684, - 48.8420054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3472476, - 48.8513879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3524539504414306, - 48.84116058051008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3524539504414306, - 48.84116058051008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3444286, - 48.8499024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3542653, - 48.8596689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543751, - 48.8585045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543751, - 48.8585045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543751, - 48.8585045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543751, - 48.8585045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3542653, - 48.8596689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3542653, - 48.8596689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3542653, - 48.8596689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363958, - 48.853574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345341, - 48.8541989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345341, - 48.8541989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345341, - 48.8541989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345341, - 48.8541989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345341, - 48.8541989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345341, - 48.8541989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363958, - 48.853574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363958, - 48.853574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3524539504414306, - 48.84116058051008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.347262, - 48.84196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3484148, - 48.8463237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3484148, - 48.8463237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3484148, - 48.8463237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.347262, - 48.84196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.347262, - 48.84196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.347262, - 48.84196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.347262, - 48.84196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363958, - 48.853574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.347262, - 48.84196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3544309, - 48.850032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3544309, - 48.850032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3544309, - 48.850032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3544309, - 48.850032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.363958, - 48.853574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3444286, - 48.8499024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3507414, - 48.8392739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335097, - 48.868181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360503, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3673798, - 48.8589682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3673798, - 48.8589682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3673798, - 48.8589682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360503, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360503, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360503, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360503, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3673798, - 48.8589682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.360503, - 48.86502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3648513, - 48.8623505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3648513, - 48.8623505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3648513, - 48.8623505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3648513, - 48.8623505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3648513, - 48.8623505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3673798, - 48.8589682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3673798, - 48.8589682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3505278, - 48.8548459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34525, - 48.86781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335097, - 48.868181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34525, - 48.86781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34525, - 48.86781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34525, - 48.86781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34525, - 48.86781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34525, - 48.86781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX02*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3526978, - 48.8633367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3630074, - 48.8674504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3526978, - 48.8633367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3526978, - 48.8633367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3526978, - 48.8633367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3630074, - 48.8674504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3630074, - 48.8674504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3630074, - 48.8674504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX03*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3505278, - 48.8548459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3505278, - 48.8548459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3507414, - 48.8392739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338973, - 48.8415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338973, - 48.8415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338973, - 48.8415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3564553, - 48.8512525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3548335, - 48.8452566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3507414, - 48.8392739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3507414, - 48.8392739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3507414, - 48.8392739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3507414, - 48.8392739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338973, - 48.8415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3564553, - 48.8512525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3505278, - 48.8548459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361378, - 48.85648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3505278, - 48.8548459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591939, - 48.8553672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591939, - 48.8553672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591939, - 48.8553672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591939, - 48.8553672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3591939, - 48.8553672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361378, - 48.85648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366004, - 48.8484226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361378, - 48.85648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366004, - 48.8484226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366004, - 48.8484226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366004, - 48.8484226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366004, - 48.8484226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366004, - 48.8484226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273944, - 48.859184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*07", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3564553, - 48.8512525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX04*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289894, - 48.871465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299582, - 48.85807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3129161, - 48.8512827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3129161, - 48.8512827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3129161, - 48.8512827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3080758, - 48.8561697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3080758, - 48.8561697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3080758, - 48.8561697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3080758, - 48.8561697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3080758, - 48.8561697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3080758, - 48.8561697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3106373, - 48.8511276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3106373, - 48.8511276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3106373, - 48.8511276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3106373, - 48.8511276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3106373, - 48.8511276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3106373, - 48.8511276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237968, - 48.8508194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237968, - 48.8508194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237968, - 48.8508194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237968, - 48.8508194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3129161, - 48.8512827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3129161, - 48.8512827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3129161, - 48.8512827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3195393, - 48.8593659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3069867, - 48.8611286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3152447, - 48.8558178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3152447, - 48.8558178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3152447, - 48.8558178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3152447, - 48.8558178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3152447, - 48.8558178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3152447, - 48.8558178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3195393, - 48.8593659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3195393, - 48.8593659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310588, - 48.85806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3195393, - 48.8593659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3195393, - 48.8593659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3195393, - 48.8593659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310588, - 48.85806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310588, - 48.85806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310588, - 48.85806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310588, - 48.85806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310588, - 48.85806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3237968, - 48.8508194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299582, - 48.85807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3069867, - 48.8611286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299582, - 48.85807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3077697, - 48.8492973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3077697, - 48.8492973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3077697, - 48.8492973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3077697, - 48.8492973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3077697, - 48.8492973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314834, - 48.8587263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314834, - 48.8587263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314834, - 48.8587263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314834, - 48.8587263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314834, - 48.8587263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314834, - 48.8587263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041857865350335, - 48.85829535733236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289894, - 48.871465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*06", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041857865350335, - 48.85829535733236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041857865350335, - 48.85829535733236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041857865350335, - 48.85829535733236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3190123, - 48.8530403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3190123, - 48.8530403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3190123, - 48.8530403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3077697, - 48.8492973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3097645, - 48.8560129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299582, - 48.85807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299582, - 48.85807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299582, - 48.85807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3097645, - 48.8560129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3097645, - 48.8560129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3097645, - 48.8560129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3097645, - 48.8560129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3097645, - 48.8560129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3245048, - 48.8598769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3245048, - 48.8598769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3245048, - 48.8598769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3245048, - 48.8598769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3245048, - 48.8598769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315725, - 48.8482825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3069867, - 48.8611286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3069867, - 48.8611286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*16", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3190123, - 48.8530403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041662, - 48.8724475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041662, - 48.8724475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041662, - 48.8724475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041662, - 48.8724475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041662, - 48.8724475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314663, - 48.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314663, - 48.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314663, - 48.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314663, - 48.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314663, - 48.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314663, - 48.8737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3044935, - 48.878351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041662, - 48.8724475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*12", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3046348, - 48.8682112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3046348, - 48.8682112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3263307, - 48.8795963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312597, - 48.87006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312597, - 48.87006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312597, - 48.87006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3263307, - 48.8795963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3263307, - 48.8795963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3263307, - 48.8795963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3263307, - 48.8795963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3263307, - 48.8795963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301121, - 48.87057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3046348, - 48.8682112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301121, - 48.87057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301121, - 48.87057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301121, - 48.87057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301121, - 48.87057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301121, - 48.87057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*14", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3046348, - 48.8682112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3046348, - 48.8682112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3046348, - 48.8682112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329982, - 48.85461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3193886, - 48.8728324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3193886, - 48.8728324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3193886, - 48.8728324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3193886, - 48.8728324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3193886, - 48.8728324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3008886, - 48.8734765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3008886, - 48.8734765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3008886, - 48.8734765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3008886, - 48.8734765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3008886, - 48.8734765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3008886, - 48.8734765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3036203, - 48.8696448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3036203, - 48.8696448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3036203, - 48.8696448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3036203, - 48.8696448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329982, - 48.85461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329982, - 48.85461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329982, - 48.85461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329982, - 48.85461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3193886, - 48.8728324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976358, - 48.8741642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976358, - 48.8741642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32056, - 48.881834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3084191, - 48.8657733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325922, - 48.8830163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325922, - 48.8830163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325922, - 48.8830163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325922, - 48.8830163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32056, - 48.881834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32056, - 48.881834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32056, - 48.881834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976358, - 48.8741642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32056, - 48.881834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32056, - 48.881834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3225683, - 48.8783912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3225683, - 48.8783912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3225683, - 48.8783912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3225683, - 48.8783912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3225683, - 48.8783912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2976358, - 48.8741642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX08*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3190123, - 48.8530403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3041857865350335, - 48.85829535733236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3190123, - 48.8530403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX07*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3239783, - 48.847875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3361369, - 48.8516002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3361369, - 48.8516002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3361369, - 48.8516002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3361369, - 48.8516002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3361369, - 48.8516002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342107, - 48.85262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342107, - 48.85262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342107, - 48.85262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342107, - 48.85262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342107, - 48.85262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.342107, - 48.85262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*02", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3182091, - 48.8473691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3182091, - 48.8473691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3182091, - 48.8473691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3182091, - 48.8473691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*03", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3239783, - 48.847875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3239783, - 48.847875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338973, - 48.8415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX05*13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.296744, - 48.841287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27153, - 48.863602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289894, - 48.871465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*06", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28308, - 48.861016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28308, - 48.861016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*05", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28308, - 48.861016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*05", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259932, - 48.837055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259932, - 48.837055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*04", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259932, - 48.837055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*04", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27153, - 48.863602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*03", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.296744, - 48.841287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*07", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27153, - 48.863602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*03", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295469, - 48.868511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295469, - 48.868511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*02", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.295469, - 48.868511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*02", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286403, - 48.876162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286403, - 48.876162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*01", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.286403, - 48.876162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9016*01", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3239783, - 48.847875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.296744, - 48.841287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*P9015*07", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3239783, - 48.847875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*04", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3287351, - 48.8489613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333149, - 48.84189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333149, - 48.84189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333149, - 48.84189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333149, - 48.84189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3287351, - 48.8489613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3287351, - 48.8489613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3287351, - 48.8489613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*09", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3280363, - 48.8430076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3280363, - 48.8430076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3280363, - 48.8430076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3280363, - 48.8430076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3280363, - 48.8430076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3371078, - 48.8552045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333149, - 48.84189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*10", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3321208, - 48.8471079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3321208, - 48.8471079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3371078, - 48.8552045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3280363, - 48.8430076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*08", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3363896, - 48.8425631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3371078, - 48.8552045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3321208, - 48.8471079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3321208, - 48.8471079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3321208, - 48.8471079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314662, - 48.8524509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314662, - 48.8524509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314662, - 48.8524509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3371078, - 48.8552045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*05", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314662, - 48.8524509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314662, - 48.8524509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3314662, - 48.8524509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*07", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3321208, - 48.8471079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 85 16 94 02", - "network": "Belib'", - "ref": "FR*V75*PPX06*06", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368846, - 43.765692 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368846, - 43.765692 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.218075, - 43.295789 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368846, - 43.765692 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368846, - 43.765692 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.218075, - 43.295789 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.218075, - 43.295789 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.218075, - 43.295789 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3042228, - 47.7504708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA MULHOUSE", - "ref": "FRTCBP01606", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa-Su 09:00-12:00,Sa-Su 14:00-17:30", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5039817, - 43.7759834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5039817, - 43.7759834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5039817, - 43.7759834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5039817, - 43.7759834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4963382, - 43.7738717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4963382, - 43.7738717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMG5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5062241, - 43.7746702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5062241, - 43.7746702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5062241, - 43.7746702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPMBA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.465746327260876, - 47.259069997714015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPARC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.465746327260876, - 47.259069997714015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPARC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366667, - 48.8678524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPALH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366667, - 48.8678524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPALH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366667, - 48.8678524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPALH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3546758690873664, - 44.015987295958546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "843206434", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPMRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.366667, - 48.8678524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPALH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3042228, - 47.7504708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA MULHOUSE", - "ref": "FRTCBP01606", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa-Su 09:00-12:00,Sa-Su 14:00-17:30", - "start_date": "2022-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85745361168763, - 47.88572973520105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "478915374", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": " VIKINGS CASINO BUSSANG", - "ref": "FRTCBP00968", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 10:00-01:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071864476703762, - 45.713664931380926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "523107621", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS BUDGET AEROPORT DE LYON", - "ref": "FRTCBP00803", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071864476703762, - 45.713664931380926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "523107621", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS BUDGET AEROPORT DE LYON", - "ref": "FRTCBP00803", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.437154769315841, - 48.21617580915875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA EPINAL", - "ref": "FRTCBP00701", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:01", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.437154769315841, - 48.21617580915875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA EPINAL", - "ref": "FRTCBP00701", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:02", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4680534959656213, - 49.2313543194067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER SAINT MAXIMIN", - "ref": "FRTCBP00700", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4680534959656213, - 49.2313543194067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER SAINT MAXIMIN", - "ref": "FRTCBP00700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4680534959656213, - 49.2313543194067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER SAINT MAXIMIN", - "ref": "FRTCBP00700", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071864476703762, - 45.713664931380926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "523107621", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS BUDGET AEROPORT DE LYON", - "ref": "FRTCBP00803", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071864476703762, - 45.713664931380926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "523107621", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS BUDGET AEROPORT DE LYON", - "ref": "FRTCBP00803", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071864476703762, - 45.713664931380926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "523107621", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS BUDGET AEROPORT DE LYON", - "ref": "FRTCBP00803", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.745622938624003, - 43.425620410989545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "533913497", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO FREJUS", - "ref": "FRTCBP00814", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-03:00,Fr-Sa 08:00-04:00,Su 08:00-03:00", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85745361168763, - 47.88572973520105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "478915374", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": " VIKINGS CASINO BUSSANG", - "ref": "FRTCBP00968", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 10:00-01:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85745361168763, - 47.88572973520105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "478915374", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": " VIKINGS CASINO BUSSANG", - "ref": "FRTCBP00968", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 10:00-01:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.85745361168763, - 47.88572973520105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "478915374", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": " VIKINGS CASINO BUSSANG", - "ref": "FRTCBP00968", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 10:00-01:00", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4708516751267252, - 43.908112555133386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "853114767", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS MONT DE MARSAN", - "ref": "FRTCBP00935", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4708516751267252, - 43.908112555133386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "853114767", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS MONT DE MARSAN", - "ref": "FRTCBP00935", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4708516751267252, - 43.908112555133386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "853114767", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS MONT DE MARSAN", - "ref": "FRTCBP00935", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4708516751267252, - 43.908112555133386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "853114767", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "IBIS MONT DE MARSAN", - "ref": "FRTCBP00935", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.745622938624003, - 43.425620410989545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "533913497", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO FREJUS", - "ref": "FRTCBP00814", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-03:00,Fr-Sa 08:00-04:00,Su 08:00-03:00", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814664415340753, - 43.126642692001724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "524125036", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO SANARY SUR MER", - "ref": "FRTCBP00805", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:30", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.745622938624003, - 43.425620410989545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "533913497", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO FREJUS", - "ref": "FRTCBP00814", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-03:00,Fr-Sa 08:00-04:00,Su 08:00-03:00", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.745622938624003, - 43.425620410989545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "533913497", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO FREJUS", - "ref": "FRTCBP00814", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-03:00,Fr-Sa 08:00-04:00,Su 08:00-03:00", - "start_date": "2022-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814664415340753, - 43.126642692001724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "524125036", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO SANARY SUR MER", - "ref": "FRTCBP00805", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:35", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814664415340753, - 43.126642692001724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "524125036", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO SANARY SUR MER", - "ref": "FRTCBP00805", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:33", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814664415340753, - 43.126642692001724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "524125036", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO SANARY SUR MER", - "ref": "FRTCBP00805", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:34", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814664415340753, - 43.126642692001724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "524125036", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO SANARY SUR MER", - "ref": "FRTCBP00805", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:32", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.814664415340753, - 43.126642692001724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "524125036", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKINGS CASINO SANARY SUR MER", - "ref": "FRTCBP00805", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:31", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2523614732393145, - 48.844450618719236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPJBO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.098126, - 48.449691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "256102922", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "TERRITOIRE D'ENERGIE ORNE", - "ref": "FRS61P61497A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.098126, - 48.449691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "256102922", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "TERRITOIRE D'ENERGIE ORNE", - "ref": "FRS61P61497A", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21256, - 43.6689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING ", - "ref": "FRIPKPNVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3486904895097536, - 48.850723128182764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPLAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71525, - 48.99051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPHDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7155734422333266, - 48.989153264996226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPCDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71151, - 48.98856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPMLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968749384840031, - 47.13239465083698 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01334", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968749384840031, - 47.13239465083698 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01334", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968749384840031, - 47.13239465083698 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01334", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.968749384840031, - 47.13239465083698 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01334", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1288420730115881, - 44.93076715073785 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01313", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1288420730115881, - 44.93076715073785 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01313", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1288420730115881, - 44.93076715073785 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01313", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1288420730115881, - 44.93076715073785 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01313", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.265881, - 43.695113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNRME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.260794257663834, - 43.704066010469525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKNGTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.335902615342613, - 46.91060667443239 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01253", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7257659312513107, - 48.07223223395324 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01005", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842535284659247, - 47.03594831089646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "849691829", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SCI DUBOIS SIMONNEAU BEAUNE", - "ref": "FRTCBP01110", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842535284659247, - 47.03594831089646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "849691829", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SCI DUBOIS SIMONNEAU BEAUNE", - "ref": "FRTCBP01110", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842535284659247, - 47.03594831089646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "849691829", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SCI DUBOIS SIMONNEAU BEAUNE", - "ref": "FRTCBP01110", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842535284659247, - 47.03594831089646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "849691829", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SCI DUBOIS SIMONNEAU BEAUNE", - "ref": "FRTCBP01110", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2463627684080526, - 49.41412118399849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "452873193", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", - "ref": "FRTCBP01006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2463627684080526, - 49.41412118399849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "452873193", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", - "ref": "FRTCBP01006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2463627684080526, - 49.41412118399849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "452873193", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", - "ref": "FRTCBP01006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2463627684080526, - 49.41412118399849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "452873193", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", - "ref": "FRTCBP01006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2463627684080526, - 49.41412118399849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "452873193", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", - "ref": "FRTCBP01006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2463627684080526, - 49.41412118399849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "452873193", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", - "ref": "FRTCBP01006", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7257659312513107, - 48.07223223395324 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01005", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7257659312513107, - 48.07223223395324 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01005", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7257659312513107, - 48.07223223395324 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01005", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.595404028892517, - 48.84031677246094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "352191910", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO MERCURE GRANVILLE", - "ref": "FRTCBP01004", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.595404028892517, - 48.84031677246094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "352191910", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO MERCURE GRANVILLE", - "ref": "FRTCBP01004", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.595404028892517, - 48.84031677246094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "352191910", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO MERCURE GRANVILLE", - "ref": "FRTCBP01004", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.595404028892517, - 48.84031677246094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "352191910", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO MERCURE GRANVILLE", - "ref": "FRTCBP01004", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24642427703547448, - 49.414548090909335 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24642427703547448, - 49.414548090909335 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24642427703547448, - 49.414548090909335 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24642427703547448, - 49.414548090909335 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24642427703547448, - 49.414548090909335 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.24642427703547448, - 49.414548090909335 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045389, - 47.358192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "383447927", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "MAISON DES ENTREPRISES DIJON", - "ref": "FRTCBP01609", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045389, - 47.358192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "383447927", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "MAISON DES ENTREPRISES DIJON", - "ref": "FRTCBP01609", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045389, - 47.358192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "383447927", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "MAISON DES ENTREPRISES DIJON", - "ref": "FRTCBP01609", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045389, - 47.358192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "383447927", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "MAISON DES ENTREPRISES DIJON", - "ref": "FRTCBP01609", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30588, - 48.86761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPFRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30588, - 48.86761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPFRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.714056171164, - 45.16083229416006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " SAMSE - GRENOBLE", - "ref": "FRTCBP01400", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", - "start_date": "2023-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.259749755820001, - 46.19579293671129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "SAMSE - ERP EDB ANNEMASSE", - "ref": "FRTCBP01329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2023-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20869700610637665, - 48.90683364868164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "393397435", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS ROUGE FALAISE", - "ref": "FRTCBP01002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20869700610637665, - 48.90683364868164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "393397435", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS ROUGE FALAISE", - "ref": "FRTCBP01002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20869700610637665, - 48.90683364868164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "393397435", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS ROUGE FALAISE", - "ref": "FRTCBP01002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20869700610637665, - 48.90683364868164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "393397435", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS ROUGE FALAISE", - "ref": "FRTCBP01002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68833, - 47.38909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20869700610637665, - 48.90683364868164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "393397435", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS ROUGE FALAISE", - "ref": "FRTCBP01002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20869700610637665, - 48.90683364868164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "393397435", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS ROUGE FALAISE", - "ref": "FRTCBP01002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5446009851970426, - 48.83853657966518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "432412104", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", - "ref": "FRTCBP01000", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3010955846585653, - 49.16246233244864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "414111310", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", - "ref": "FRTCBP00999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3010955846585653, - 49.16246233244864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "414111310", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", - "ref": "FRTCBP00999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3010955846585653, - 49.16246233244864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "414111310", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", - "ref": "FRTCBP00999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3010955846585653, - 49.16246233244864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "414111310", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", - "ref": "FRTCBP00999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3010955846585653, - 49.16246233244864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "414111310", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", - "ref": "FRTCBP00999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3010955846585653, - 49.16246233244864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "414111310", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", - "ref": "FRTCBP00999", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71206, - 48.99212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPVPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71206, - 48.99212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPVPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71206, - 48.99212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPVPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71206, - 48.99212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "901573139", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPVPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35791, - 48.8354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "03568009", - "network": "INTERPARKING", - "ref": "FRIPKPPSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.335902615342613, - 46.91060667443239 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01253", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.335902615342613, - 46.91060667443239 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01253", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30588, - 48.86761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPFRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30588, - 48.86761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPFRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34781, - 48.87122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35854, - 48.86359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "INTERPARKING", - "ref": "FRIPKPPTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.335902615342613, - 46.91060667443239 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01253", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.947743473694628, - 47.13177788637616 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834670844833498, - 47.019918627758656 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834670844833498, - 47.019918627758656 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834670844833498, - 47.019918627758656 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834670844833498, - 47.019918627758656 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838246420326645, - 46.796392784177385 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838246420326645, - 46.796392784177385 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838246420326645, - 46.796392784177385 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838246420326645, - 46.796392784177385 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.947743473694628, - 47.13177788637616 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.947743473694628, - 47.13177788637616 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.947743473694628, - 47.13177788637616 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839751898330378, - 47.0211145050141 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01166", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2967943540808378, - 48.87715355652244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839751898330378, - 47.0211145050141 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01166", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839751898330378, - 47.0211145050141 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01166", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839751898330378, - 47.0211145050141 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01166", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.846772144834794, - 47.02550828376189 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01165", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.846772144834794, - 47.02550828376189 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01165", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2385127991437912, - 49.41841125488281 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2385127991437912, - 49.41841125488281 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2385127991437912, - 49.41841125488281 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2385127991437912, - 49.41841125488281 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2385127991437912, - 49.41841125488281 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2385127991437912, - 49.41841125488281 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "FRTCBP01001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55032, - 44.86411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPCTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09441, - 43.63799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPPPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36856, - 43.831882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "442414207", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPNEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.26451, - 43.69807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "692051113", - "email": "supervision-ev.france@totalenergies.com", - "phone": "3 56 80 09", - "network": "INTERPARKING", - "ref": "FRIPKPGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320074840507427, - 48.87579799849022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18515, - 48.87968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "340725803", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR HOTELS", - "ref": "FRTCBP00753", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87930851314442, - 48.94679007929618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER MEAUX", - "ref": "FRTCBP00702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.378737442328959, - 48.11208081972636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA COLMAR CAR AVENUE", - "ref": "FRTCBP00703", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:01", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.378737442328959, - 48.11208081972636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA COLMAR CAR AVENUE", - "ref": "FRTCBP00703", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:02", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8803172978119616, - 49.1758271238547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "321775769", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA FORBACH", - "ref": "FRTCBP00705", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8803172978119616, - 49.1758271238547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "321775769", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA FORBACH", - "ref": "FRTCBP00705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43787095756094, - 48.21586889780601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "347638884", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW EPINAL", - "ref": "FRTCBP00707", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43787095756094, - 48.21586889780601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "347638884", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW EPINAL", - "ref": "FRTCBP00707", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16706109596188, - 49.14217184031736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "321775769", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA METZ", - "ref": "FRTCBP00708", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3392135708282433, - 45.72855122129419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "345036750", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Renault Agents France", - "ref": "FRTCBP00724", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,14:00-18:00,Fr 08:00-12:00,14:00-17:00,Sa 08:00-12:00", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0343797063079334, - 45.396309000661006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "753105006", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Renault Agents France", - "ref": "FRTCBP00726", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00", - "start_date": "2022-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226915023755001, - 46.19406639950159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "392231403", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Renault Agents France", - "ref": "FRTCBP00727", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", - "start_date": "2022-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18515, - 48.87968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "340725803", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR HOTELS", - "ref": "FRTCBP00753", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771762215343999, - 45.712529840333644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "791433501", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Atelier de l'Aluminium Chanopost", - "ref": "FRTCBP00839", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8680684832543035, - 46.8568964996855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "539245803", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "CHALLANS AUTOMOBILES", - "ref": "FRTCBP00774", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8680684832543035, - 46.8568964996855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "539245803", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "CHALLANS AUTOMOBILES", - "ref": "FRTCBP00774", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-19:00", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.369344884371708, - 43.31506007724927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "200054807", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "METROPOLE D'AIX-MARSEILLE-PROVENCE", - "ref": "FRTCBP00802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.369344884371708, - 43.31506007724927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "200054807", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "METROPOLE D'AIX-MARSEILLE-PROVENCE", - "ref": "FRTCBP00802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072599014770537, - 46.58534902679759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "412973711", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKING CASINOS", - "ref": "FRTCBP00809", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072599014770537, - 46.58534902679759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "412973711", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKING CASINOS", - "ref": "FRTCBP00809", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072599014770537, - 46.58534902679759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "412973711", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKING CASINOS", - "ref": "FRTCBP00809", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072599014770537, - 46.58534902679759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "412973711", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "VIKING CASINOS", - "ref": "FRTCBP00809", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771762215343999, - 45.712529840333644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "791433501", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Atelier de l'Aluminium Chanopost", - "ref": "FRTCBP00839", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771762215343999, - 45.712529840333644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "791433501", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Atelier de l'Aluminium Chanopost", - "ref": "FRTCBP00839", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771762215343999, - 45.712529840333644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "791433501", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Atelier de l'Aluminium Chanopost", - "ref": "FRTCBP00839", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87930851314442, - 48.94679007929618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER MEAUX", - "ref": "FRTCBP00702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87930851314442, - 48.94679007929618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER MEAUX", - "ref": "FRTCBP00702", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.87930851314442, - 48.94679007929618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER MEAUX", - "ref": "FRTCBP00702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0869538865065596, - 49.45162182529298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BEAUVAIS", - "ref": "FRTCBP00699", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9659948222190418, - 47.41092605168244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "377638911", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "PSA Agents France", - "ref": "FRTCBP00627", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 13:00-18:30,Tu-Fr 09:00-12:00,Tu-Fr 13:30-18:30,Sa 08:00-12:00", - "start_date": "2022-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8459941, - 47.0325195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "778168005", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Résidence les Primevères", - "ref": "FRTCBP00650", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8459941, - 47.0325195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "778168005", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Résidence les Primevères", - "ref": "FRTCBP00650", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8459941, - 47.0325195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "778168005", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Résidence les Primevères", - "ref": "FRTCBP00650", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8459941, - 47.0325195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "778168005", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Résidence les Primevères", - "ref": "FRTCBP00650", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8140013, - 47.5188961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "877150144", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "GARAGE PEUGEOT CUCIS", - "ref": "FRTCBP00689", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.721469092114616, - 47.65561996206715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "880708748", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "PSA Agents France", - "ref": "FRTCBP00690", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0415555914491317, - 47.50852503292789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "811425065", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "DA COSTA AUTOMOBILES", - "ref": "FRTCBP00691", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.036040724644734, - 45.39793430999813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "332574540", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "PSA Agents France", - "ref": "FRTCBP00694", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 09:00-12:00,14:00-19:00", - "start_date": "2022-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2589672351008163, - 45.702755954262976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "322591892", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "PSA Agents France", - "ref": "FRTCBP00695", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.710239355468517, - 48.830511379284836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089159", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BUSSY", - "ref": "FRTCBP00696", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.710239355468517, - 48.830511379284836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BUSSY", - "ref": "FRTCBP00696", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.710239355468517, - 48.830511379284836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089163", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BUSSY", - "ref": "FRTCBP00696", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.710239355468517, - 48.830511379284836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089162", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BUSSY", - "ref": "FRTCBP00696", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233597954184353, - 49.10522433612676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "332834175", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW METZ", - "ref": "FRTCBP00697", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:30,Mo-Fr 13:30-19:00,Sa 08:30-12:00,Sa 14:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233597954184353, - 49.10522433612676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "332834175", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW METZ", - "ref": "FRTCBP00697", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:30,Mo-Fr 13:30-19:00,Sa 08:30-12:00,Sa 14:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233597954184353, - 49.10522433612676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "332834175", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW METZ", - "ref": "FRTCBP00697", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:30,Mo-Fr 13:30-19:00,Sa 08:30-12:00,Sa 14:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233597954184353, - 49.10522433612676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "332834175", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW METZ", - "ref": "FRTCBP00697", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:45-12:30,Mo-Fr 13:30-19:00,Sa 08:30-12:00,Sa 14:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.044175784657921, - 48.72321115587331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "851779066", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW SARREBOURG", - "ref": "FRTCBP00698", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 13:30-17:30,Fr 09:00-12:00,Fr 13:30-17:30", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.044175784657921, - 48.72321115587331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "851779066", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW SARREBOURG", - "ref": "FRTCBP00698", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 13:30-17:30,Fr 09:00-12:00,Fr 13:30-17:30", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0869538865065596, - 49.45162182529298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BEAUVAIS", - "ref": "FRTCBP00699", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0869538865065596, - 49.45162182529298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BEAUVAIS", - "ref": "FRTCBP00699", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0869538865065596, - 49.45162182529298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "805089158", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER BEAUVAIS", - "ref": "FRTCBP00699", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771762215343999, - 45.712529840333644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "791433501", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Atelier de l'Aluminium Chanopost", - "ref": "FRTCBP00839", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.771762215343999, - 45.712529840333644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "791433501", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "Atelier de l'Aluminium Chanopost", - "ref": "FRTCBP00839", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6604186, - 46.1920729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "751131202", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "HOTEL VAL DE VIENNE", - "ref": "FRTCBP00621", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547615742328, - 48.66533198978757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "801484627", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SCI GADMP", - "ref": "FRTCBP00915", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690473273011127, - 45.148367685972154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP COMBOIRE", - "ref": "FRTCBP01199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:30", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.804661630684159, - 48.7960019597569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA HAGUENAU", - "ref": "FRTCBP01299", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.804661630684159, - 48.7960019597569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "479081903", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA HAGUENAU", - "ref": "FRTCBP01299", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0894925, - 48.803014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "746150218", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER COULOMMIERS", - "ref": "FRTCBP01302", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Su-Sa 09:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0894925, - 48.803014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "746150218", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER COULOMMIERS", - "ref": "FRTCBP01302", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Su-Sa 09:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0894925, - 48.803014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "746150218", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER COULOMMIERS", - "ref": "FRTCBP01302", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Su-Sa 09:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0894925, - 48.803014 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "746150218", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "RIESTER COULOMMIERS", - "ref": "FRTCBP01302", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Su-Sa 09:00-18:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.547615742328, - 48.66533198978757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "801484627", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SCI GADMP", - "ref": "FRTCBP00916", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.508447925326274, - 47.25090051279224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "808790224", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BEST WESTERN NANTES", - "ref": "FRTCBP00989", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.892356830681991, - 49.154257203162594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "325805547", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "L.R. Participations", - "ref": "FRTCBP00991", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.892356830681991, - 49.154257203162594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "325805547", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "L.R. Participations", - "ref": "FRTCBP00991", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.892356830681991, - 49.154257203162594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "325805547", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "L.R. Participations", - "ref": "FRTCBP00991", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.892356830681991, - 49.154257203162594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "325805547", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "L.R. Participations", - "ref": "FRTCBP00991", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.146379, - 43.932802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "341636918", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "MERCURE ALBI", - "ref": "FRTCBP01185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.146379, - 43.932802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "341636918", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "MERCURE ALBI", - "ref": "FRTCBP01185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.146379, - 43.932802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "341636918", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "MERCURE ALBI", - "ref": "FRTCBP01185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.146379, - 43.932802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "341636918", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "MERCURE ALBI", - "ref": "FRTCBP01185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.949377130687999, - 45.57229420213553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "779463223", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAMSE - ERP BASSENS-Parking magasin", - "ref": "FRTCBP01198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 07:30-19:00", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6604186, - 46.1920729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "751131202", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "HOTEL VAL DE VIENNE", - "ref": "FRTCBP00621", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145928, - 49.349901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "851381459", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW", - "ref": "FRTCBP00601", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.070968, - 50.639161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "821185634", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863347, - 45.771057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "380301317", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863347, - 45.771057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "380301317", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863347, - 45.771057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "380301317", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.899705, - 49.178504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "434017455", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.899705, - 49.178504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "434017455", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.067277, - 43.420531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "349925362", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.067277, - 43.420531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "349925362", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387229, - 48.831487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "533390514", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00355", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387229, - 48.831487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "533390514", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00355", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.070968, - 50.639161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "821185634", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.070968, - 50.639161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "821185634", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.208368, - 47.300077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "331996140", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06979, - 45.688937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.208368, - 47.300077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "331996140", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00357", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03287, - 50.568861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00371", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.03287, - 50.568861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00371", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.691778, - 44.88082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00382", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.691778, - 44.88082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00382", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.093141, - 47.317976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00384", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.093141, - 47.317976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00384", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06979, - 45.688937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06979, - 45.688937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06979, - 45.688937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06979, - 45.688937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.863347, - 45.771057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "380301317", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861404, - 45.759883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "490227402", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861404, - 45.759883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "490227402", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861404, - 45.759883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "490227402", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2561617253619675, - 48.847266326997016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPPDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.861404, - 45.759883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "490227402", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06979, - 45.688937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00386", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.188131, - 48.642626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00387", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145928, - 49.349901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "851381459", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW", - "ref": "FRTCBP00601", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64245, - 50.52183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "520393661", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR HOTELS", - "ref": "FRTCBP00529", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.601978976728186, - 43.20610905711502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "441568748", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00475", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.601978976728186, - 43.20610905711502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "441568748", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00475", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.601978976728186, - 43.20610905711502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "441568748", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00475", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175193, - 43.587342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "888632957", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00513", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175193, - 43.587342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "888632957", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00513", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175193, - 43.587342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "888632957", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00513", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175193, - 43.587342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "888632957", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00513", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465756, - 43.512302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "800994055", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00528", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465756, - 43.512302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "800994055", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00528", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465756, - 43.512302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "800994055", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00528", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.465756, - 43.512302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "800994055", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00528", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.64245, - 50.52183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "520393661", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR HOTELS", - "ref": "FRTCBP00529", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.188131, - 48.642626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00387", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.790004885038854, - 49.396659217227096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "339436917", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00530", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.775424, - 49.402224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "500152780", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00530", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.790004885038854, - 49.396659217227096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "339436917", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00530", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.790004885038854, - 49.396659217227096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "339436917", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00530", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.790004885038854, - 49.396659217227096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "339436917", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00530", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.065153169232204, - 49.27058538303454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "350416350", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "F.B SERVICE", - "ref": "FRTCBP00568", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.065153169232204, - 49.27058538303454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "350416350", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "F.B SERVICE", - "ref": "FRTCBP00568", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.065153169232204, - 49.27058538303454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "350416350", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "F.B SERVICE", - "ref": "FRTCBP00568", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.065153169232204, - 49.27058538303454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "350416350", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "F.B SERVICE", - "ref": "FRTCBP00568", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-19:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145928, - 49.349901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "851381459", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW", - "ref": "FRTCBP00601", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145928, - 49.349901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "851381459", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "BMW", - "ref": "FRTCBP00601", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.601978976728186, - 43.20610905711502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "441568748", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00475", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.117295, - 49.282126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "433528734", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00427", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.117295, - 49.282126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "433528734", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00427", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.117295, - 49.282126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "433528734", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00427", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.195802, - 43.703258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00389", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.195802, - 43.703258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00389", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.937386, - 47.939605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.937386, - 47.939605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00390", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.413516, - 43.710233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00392", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.413516, - 43.710233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00392", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388259, - 48.98659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "878873942", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "LOUVRE HOTELS GROUP", - "ref": "FRTCBP00396", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388259, - 48.98659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "878873942", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "LOUVRE HOTELS GROUP", - "ref": "FRTCBP00396", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388259, - 48.98659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "878873942", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "LOUVRE HOTELS GROUP", - "ref": "FRTCBP00396", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251248, - 43.434434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251248, - 43.434434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251248, - 43.434434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.251248, - 43.434434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "562013771", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "WARNING", - "ref": "FRTCBP00415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:00-17:30", - "start_date": "2021-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.762013, - 48.508649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "478811458", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00425", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.762013, - 48.508649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "478811458", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00425", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.832477, - 46.79978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "521675777", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "ACCOR Hotels", - "ref": "FRTCBP00426", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16706109596188, - 49.14217184031736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "321775769", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "KIA METZ", - "ref": "FRTCBP00708", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30", - "start_date": "2022-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324200757103425, - 48.871139475303686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Marketing France", - "owner:ref:FR:SIREN": "317032993", - "email": "supervision-ev.france@totalenergies.com", - "phone": "0483568009", - "network": "SAEMES", - "ref": "FRSAEPMAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.135334, - 48.079524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137294", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.760177, - 48.462003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E139678", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.760177, - 48.462003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E139679", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058089, - 48.503768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137373", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.058089, - 48.503768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137374", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.340418, - 48.703594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137368", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.135334, - 48.079524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137295", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186173, - 48.044022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137316", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186173, - 48.044022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137317", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.340418, - 48.703594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE Eure-et-Loir", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0675389808", - "network": "FR*S28", - "ref": "FRS28E137367", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.348379, - 48.079293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.329051, - 48.070643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.470213, - 48.040626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.322335, - 48.676212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.355261, - 48.720711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.631473, - 48.27611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.827436, - 48.624091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Foncière des parcs", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.033458, - 47.905351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "See You Sun", - "owner:ref:FR:SIREN": "824641294", - "email": "aguerin@seeyousun.fr", - "network": "Foncière des parcs", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5297513000000009, - 44.790757700000015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD VILLENAVE", - "owner:ref:FR:SIREN": "881471791", - "email": "hippo.villenave@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941188", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5297513000000009, - 44.790757700000015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD VILLENAVE", - "owner:ref:FR:SIREN": "881471791", - "email": "hippo.villenave@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941188", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5297513000000009, - 44.790757700000015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD VILLENAVE", - "owner:ref:FR:SIREN": "881471791", - "email": "hippo.villenave@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941188", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5297513000000009, - 44.790757700000015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD VILLENAVE", - "owner:ref:FR:SIREN": "881471791", - "email": "hippo.villenave@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941188", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094714, - 49.474365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "449431683", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge L2B", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.094714, - 49.474365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "449431683", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge L2B", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-18:00", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.937887, - 43.267998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.937887, - 43.267998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.937887, - 43.267998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298185, - 43.212574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "507500775", - "email": "contact@sga-industries.com", - "phone": "0232103853", - "network": "Réseau de recharge DEBELEC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-16:30", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42, - 49.17 - ] - }, - "properties": { - "amenity": "charging_station", - "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", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8781143, - 50.8648906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "LELIEUR FERNAND", - "ref": "01FHDM6WJ5MKS65JRPYB48K6BD", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2287561, - 50.4769909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "SOLLIX", - "ref": "01FHFE4GDH2FH23D14SJJB8XKG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.414278, - 43.268556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431066, - 43.282781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43951, - 43.28123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43951, - 43.28123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.421824, - 43.269773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.421824, - 43.269773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.414278, - 43.268556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.213539, - 43.417033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4082, - 43.280252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4082, - 43.280252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.213539, - 43.417033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.481858, - 43.298393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.217351, - 43.418544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.217351, - 43.418544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.177512, - 43.728394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431066, - 43.282781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.51211, - 43.31196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.481858, - 43.298393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.459582, - 43.288847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.459582, - 43.288847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.51211, - 43.31196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.340986, - 43.393554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.50964, - 43.30106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.50964, - 43.30106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.464186, - 43.312781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.464186, - 43.312781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.449793, - 43.312251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.449793, - 43.312251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42204, - 43.318421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42204, - 43.318421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.450343, - 43.303279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.450343, - 43.303279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.177512, - 43.728394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.309629, - 43.410797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.340986, - 43.393554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.990593, - 43.513977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.194176, - 43.551585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60471, - 43.376505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60471, - 43.376505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.176413, - 43.629899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.176413, - 43.629899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.990593, - 43.513977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.983332, - 43.494334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.348994, - 43.380874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.983332, - 43.494334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988932, - 43.502474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988932, - 43.502474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.980599, - 43.515583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.980599, - 43.515583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992584, - 43.476179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.194176, - 43.551585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.517073, - 43.281395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.517073, - 43.281395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.309295, - 43.714044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.309295, - 43.714044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08596, - 43.699042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08596, - 43.699042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.264653, - 43.654859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.264653, - 43.654859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.124454, - 43.59286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.124454, - 43.59286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.487714, - 43.510783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.487714, - 43.510783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.309629, - 43.410797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387306, - 43.295444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43225, - 43.32013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.348994, - 43.380874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43225, - 43.32013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.413793, - 43.326733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.446643, - 43.342856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.367851, - 43.308184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.389845, - 43.309831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.371379, - 43.309042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.371379, - 43.309042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366179, - 43.298904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366179, - 43.298904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.367851, - 43.308184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368833, - 43.301462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.446643, - 43.342856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.368833, - 43.301462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381055, - 43.301561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381055, - 43.301561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38179, - 43.299055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38179, - 43.299055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39319, - 43.304651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.389845, - 43.309831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400517, - 43.302721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400517, - 43.302721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400736, - 43.310012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400736, - 43.310012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.397974, - 43.315138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.397974, - 43.315138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.396799, - 43.303235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.396799, - 43.303235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992965, - 43.50076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.399566, - 43.300388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.399566, - 43.300388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.396151, - 43.289353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.396151, - 43.289353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400273, - 43.289235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.400273, - 43.289235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387306, - 43.295444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39319, - 43.304651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329846, - 43.361274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329846, - 43.361274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.436152, - 43.342681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409596, - 43.320297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409596, - 43.320297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.413793, - 43.326733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.418971, - 43.329629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.418971, - 43.329629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.437851, - 43.352498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.437851, - 43.352498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404849, - 43.317055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404849, - 43.317055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.455123, - 43.32522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.455123, - 43.32522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42744, - 43.32901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42744, - 43.32901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.436152, - 43.342681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.382365, - 43.32494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.337002, - 43.357724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.382365, - 43.32494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.374552, - 43.332198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.374552, - 43.332198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5, - 43.34564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5, - 43.34564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356946, - 43.339505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356946, - 43.339505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.361972, - 43.379781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.361972, - 43.379781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363271, - 43.324349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363271, - 43.324349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.309551, - 43.362236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.309551, - 43.362236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.337002, - 43.357724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992584, - 43.476179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755862, - 43.788423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992965, - 43.50076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.419379, - 43.556706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.443726, - 43.528782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.453065, - 43.529819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.453065, - 43.529819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387851, - 43.50363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387851, - 43.50363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.419379, - 43.556706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.450732, - 43.524099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.422441, - 43.580561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.450732, - 43.524099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.419438, - 43.536986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.419438, - 43.536986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.418336, - 43.484952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.418336, - 43.484952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.449734, - 43.519155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.443726, - 43.528782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.420083, - 43.522361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.420083, - 43.522361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.460704, - 43.526456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.460704, - 43.526456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.438274, - 43.509298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.438274, - 43.509298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.459641, - 43.556239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.459641, - 43.556239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.435907, - 43.515683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.435907, - 43.515683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.347074, - 43.485668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.347074, - 43.485668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.488317, - 43.357858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.488317, - 43.357858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.483673, - 43.336789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.483673, - 43.336789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.449734, - 43.519155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.422441, - 43.580561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992965, - 43.50076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755862, - 43.788423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870647, - 43.691626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870647, - 43.691626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80578, - 43.721516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80578, - 43.721516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.805189, - 43.722592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.805189, - 43.722592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.709475, - 43.724666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.461132, - 43.534036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.709475, - 43.724666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94716, - 43.761237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94716, - 43.761237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.948532, - 43.706298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.948532, - 43.706298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39792, - 43.295949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782551, - 43.719317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.782551, - 43.719317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.726419, - 43.781708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.726419, - 43.781708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834699, - 43.788743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.834699, - 43.788743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829994, - 43.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829994, - 43.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.831202, - 43.786244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.831202, - 43.786244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829711, - 43.792941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829711, - 43.792941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "241300375", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431899, - 43.524809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431899, - 43.524809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.354437, - 43.491323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.354437, - 43.491323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.461132, - 43.534036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.468472, - 43.334722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.468472, - 43.334722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1569112, - 43.704091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193556, - 43.356012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44866, - 43.450954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44866, - 43.450954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.944231, - 43.454421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.944231, - 43.454421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.026815, - 43.69299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.026815, - 43.69299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.193556, - 43.356012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1569112, - 43.704091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.353442, - 43.571542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.353442, - 43.571542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.700573, - 43.274927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.700573, - 43.274927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071913, - 43.565413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.071913, - 43.565413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.47019, - 43.451656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.47019, - 43.451656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.464812, - 43.434866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.464812, - 43.434866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.474463, - 43.4563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.474463, - 43.4563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.627451, - 43.293444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.627451, - 43.293444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23536, - 43.39324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23536, - 43.39324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063095, - 43.605489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063095, - 43.605489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995847, - 43.499057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995847, - 43.499057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995847, - 43.499057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995847, - 43.499057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.992965, - 43.50076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.162934, - 43.382782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.162934, - 43.382782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.246711, - 43.719609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.168224, - 43.472999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.545049, - 43.284336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.545049, - 43.284336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57308, - 43.288849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57308, - 43.288849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56348, - 43.29134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56348, - 43.29134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.603132, - 43.287061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.603132, - 43.287061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.632679, - 43.368648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.632679, - 43.368648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.156308, - 43.663796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.156308, - 43.663796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.168563, - 43.477008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.168563, - 43.477008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.168224, - 43.472999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.246711, - 43.719609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423155, - 43.44122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.423155, - 43.44122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41303, - 43.459768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41303, - 43.459768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.352806, - 43.459944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.352806, - 43.459944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.566859, - 43.255951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.566859, - 43.255951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.151676, - 43.33248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.151676, - 43.33248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.536259, - 43.218608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.536259, - 43.218608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.624754, - 43.210398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.624754, - 43.210398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39792, - 43.295949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41021, - 43.33595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.388323, - 43.284704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395063, - 43.266244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057812, - 43.40283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057812, - 43.40283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.053184, - 43.339068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.053184, - 43.339068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39766, - 43.24166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39766, - 43.24166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.395063, - 43.266244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363658, - 43.333326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.351102, - 43.286276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.351102, - 43.286276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366079, - 43.290685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366079, - 43.290685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.373858, - 43.29145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.373858, - 43.29145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.50502, - 43.417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.50502, - 43.417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.639103, - 43.447876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.639103, - 43.447876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57785, - 43.38458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.57785, - 43.38458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.227451, - 43.487976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.227451, - 43.487976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62431, - 43.4809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62431, - 43.4809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.03184, - 43.54726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.03184, - 43.54726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.040562, - 43.550837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.040562, - 43.550837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.403016, - 43.680347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.403016, - 43.680347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404101, - 43.679402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363658, - 43.333326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.360216, - 43.341629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988923, - 43.516083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986984, - 43.504714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9899, - 43.51302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9899, - 43.51302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.994777, - 43.502734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.994777, - 43.502734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986984, - 43.504714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986984, - 43.504714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986984, - 43.504714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.360216, - 43.341629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986984, - 43.504714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986984, - 43.504714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988923, - 43.516083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988923, - 43.516083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988923, - 43.516083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988923, - 43.516083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.636482, - 43.635899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.636482, - 43.635899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.435216, - 43.663894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.435216, - 43.663894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035, - 43.36924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25035, - 43.36924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.416769, - 43.279139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.416769, - 43.279139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.439112, - 43.290268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.439112, - 43.290268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.49404, - 43.30195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.49404, - 43.30195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417336, - 43.304228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.417336, - 43.304228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41021, - 43.33595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.393556, - 43.330417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.393556, - 43.330417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404101, - 43.679402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.076277, - 43.746832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.076277, - 43.746832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00374, - 43.608018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.998991, - 43.809447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.903217, - 43.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.903217, - 43.87559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949075, - 43.807491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.949075, - 43.807491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00374, - 43.608018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.775139, - 43.850038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.388323, - 43.284704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.775139, - 43.850038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841645, - 43.839761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.841645, - 43.839761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857174, - 43.883885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857174, - 43.883885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852998, - 43.881935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.998991, - 43.809447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.805896282196045, - 43.89907521461469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.805896282196045, - 43.89907521461469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.944956, - 43.834723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.944956, - 43.834723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813026, - 43.638466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813026, - 43.638466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42714, - 43.457535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42714, - 43.457535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.427083, - 43.457513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.427083, - 43.457513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.648661, - 43.859012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.648661, - 43.859012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918112, - 43.839632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918112, - 43.839632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.783836, - 43.832303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.783836, - 43.832303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.852998, - 43.881935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.948373, - 43.860836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.948373, - 43.860836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.448569, - 43.345406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.257975, - 43.436392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53811, - 43.213528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53811, - 43.213528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53811, - 43.213528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53811, - 43.213528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53811, - 43.213528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53811, - 43.213528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62862, - 43.297151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21803, - 43.416931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.438303, - 43.231932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.438303, - 43.231932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.438303, - 43.231932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.438303, - 43.231932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.484191, - 43.285678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.448569, - 43.345406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.69093, - 43.863427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431385, - 43.344402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431385, - 43.344402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431385, - 43.344402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.431385, - 43.344402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.443135, - 43.297307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.443135, - 43.297307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412199, - 43.245262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412199, - 43.245262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62862, - 43.297151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21803, - 43.416931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.484191, - 43.285678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.754017, - 43.90181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.754017, - 43.90181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.69093, - 43.863427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "251301545", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "Simone", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988923, - 43.516083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.257975, - 43.436392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.990593, - 43.513977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.584868, - 43.645533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.981837, - 43.404731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.981837, - 43.404731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46472, - 43.347677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46472, - 43.347677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.463668, - 43.343455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.463668, - 43.343455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.584868, - 43.645533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.525681, - 43.40751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501983, - 43.692855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501983, - 43.692855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.152651, - 43.631195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.152651, - 43.631195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.003616, - 43.582842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.003616, - 43.582842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80192, - 43.389722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80192, - 43.389722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.673313, - 43.524756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.673313, - 43.524756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23283, - 43.48956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23283, - 43.48956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588032, - 43.248829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588032, - 43.248829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.604201, - 43.348577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.604201, - 43.348577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.299185, - 43.623065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.299185, - 43.623065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.030772, - 43.549935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.030772, - 43.549935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.011772, - 43.453829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.011772, - 43.453829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.710252, - 43.686469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.49543, - 43.473074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.527233, - 43.637349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.527233, - 43.637349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38785, - 43.27915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.990593, - 43.513977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.373637, - 43.287646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.373637, - 43.287646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.384417, - 43.288361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.384417, - 43.288361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356014, - 43.289968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356014, - 43.289968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.370056, - 43.286242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.370056, - 43.286242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.358481, - 43.291969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.358481, - 43.291969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381914, - 43.247392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381914, - 43.247392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38785, - 43.27915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390105, - 43.272778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.039669, - 43.329723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390105, - 43.272778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.399622, - 43.24787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.399622, - 43.24787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.421871, - 43.253283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.421871, - 43.253283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404021, - 43.238356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404021, - 43.238356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409066, - 43.258666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409066, - 43.258666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056633, - 43.408601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056633, - 43.408601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.048822, - 43.406476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.048822, - 43.406476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.039669, - 43.329723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.710252, - 43.686469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.49543, - 43.473074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.525681, - 43.40751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.933619, - 43.59184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.557972, - 43.452861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94352, - 43.42977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94352, - 43.42977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.939013, - 43.593007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.939013, - 43.593007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.933619, - 43.59184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253117, - 43.558456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25032, - 43.459262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.253117, - 43.558456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.574552, - 43.292736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.574552, - 43.292736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.370653, - 43.490568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.370653, - 43.490568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.446349, - 43.519237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.223084, - 43.386888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.223084, - 43.386888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540469, - 43.434712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540469, - 43.434712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955317, - 43.526777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.955317, - 43.526777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.987945, - 43.493681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.987945, - 43.493681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986419, - 43.51365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.986419, - 43.51365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988791, - 43.507643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988791, - 43.507643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988791, - 43.507643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988791, - 43.507643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974134, - 43.494049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24102, - 43.415533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974134, - 43.494049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.446349, - 43.519237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.557972, - 43.452861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.107927, - 43.639222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.090649, - 43.635131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109004, - 43.332432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.093004, - 43.638665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.093004, - 43.638665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.107927, - 43.639222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.099081, - 43.65232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.099081, - 43.65232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.090649, - 43.635131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366413, - 43.398629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056872, - 43.638515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056872, - 43.638515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.235656, - 43.420631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25032, - 43.459262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.235656, - 43.420631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24102, - 43.415533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.366413, - 43.398629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109004, - 43.332432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.486176, - 43.600001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.255214, - 43.523198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.293237, - 43.54659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.205005, - 43.689299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.293237, - 43.54659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.486176, - 43.600001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.436711, - 43.429731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.255214, - 43.523198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.598967, - 43.555415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.598967, - 43.555415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.688023, - 43.448682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.688023, - 43.448682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.436711, - 43.429731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.205005, - 43.689299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVzen (SMEG Développement)", - "owner:ref:FR:SIREN": "200054807", - "email": "support@evzen.com", - "phone": "37792050403", - "network": "larecharge", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10163, - 45.785758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10163, - 45.785758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10163, - 45.785758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.108089, - 45.79353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.108089, - 45.79353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.108089, - 45.79353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.105057, - 45.778448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.105057, - 45.778448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068955, - 45.776503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.105057, - 45.778448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080522, - 45.771753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080522, - 45.771753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.080522, - 45.771753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.085003, - 45.78558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10959, - 45.810183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.085003, - 45.78558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10959, - 45.810183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068955, - 45.776503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.10959, - 45.810183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.084515, - 45.849755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072883, - 45.778677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068955, - 45.776503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068955, - 45.776503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1293519, - 45.5896077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1293519, - 45.5896077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1293519, - 45.5896077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.084515, - 45.849755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.088685, - 45.760472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.084515, - 45.849755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072574, - 45.919709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072574, - 45.919709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072574, - 45.919709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.088685, - 45.760472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.088685, - 45.760472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.085003, - 45.78558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144055, - 45.825378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072883, - 45.778677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.050666, - 45.795907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1928738, - 45.7313678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1928738, - 45.7313678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1928738, - 45.7313678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.535703, - 45.755722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.535703, - 45.755722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.535703, - 45.755722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.050666, - 45.795907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1928496, - 45.7307631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.050666, - 45.795907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144055, - 45.825378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.144055, - 45.825378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468026, - 45.802692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468026, - 45.802692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068955, - 45.776503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1928496, - 45.7307631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1928496, - 45.7307631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.072883, - 45.778677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065886, - 45.793482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.078341, - 45.781253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.078341, - 45.781253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.078341, - 45.781253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.083815, - 45.764902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.083815, - 45.764902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.083815, - 45.764902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065886, - 45.793482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087534, - 45.993258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065886, - 45.793482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087534, - 45.993258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087534, - 45.993258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087534, - 45.993258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087534, - 45.993258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.087534, - 45.993258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.068955, - 45.776503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04208259, - 45.33291829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0646, - 45.73286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0646, - 45.73286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.168743, - 45.795585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.168743, - 45.795585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9810852, - 45.666657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9810852, - 45.666657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9810852, - 45.666657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096065, - 45.75256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096065, - 45.75256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.096065, - 45.75256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.086385, - 45.754934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.086385, - 45.754934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.086385, - 45.754934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8542, - 45.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8542, - 45.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8542, - 45.5119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9324802, - 45.510146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.168743, - 45.795585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.109378, - 45.747517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.109378, - 45.747517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04208259, - 45.33291829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25019974, - 45.54625829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.200362, - 46.020521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.200362, - 46.020521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.200362, - 46.020521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04208259, - 45.33291829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04208259, - 45.33291829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04208259, - 45.33291829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.109378, - 45.747517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12345866, - 45.40161915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12345866, - 45.40161915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12345866, - 45.40161915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.724858, - 45.413449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.724858, - 45.413449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.724858, - 45.413449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9324802, - 45.510146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9324802, - 45.510146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34237, - 45.726008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.634929, - 45.85832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.819578, - 45.8380775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.098991, - 45.829498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.098991, - 45.829498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.098991, - 45.829498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.634929, - 45.85832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.634929, - 45.85832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.189445, - 45.723408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.819578, - 45.8380775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.189445, - 45.723408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.189445, - 45.723408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.060217, - 45.739984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.060217, - 45.739984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.060217, - 45.739984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0646, - 45.73286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.819578, - 45.8380775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247247, - 45.499488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34237, - 45.726008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.078451, - 45.827998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34237, - 45.726008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.338388, - 45.724561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.338388, - 45.724561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.338388, - 45.724561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.078451, - 45.827998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.078451, - 45.827998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18769063, - 45.45757491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247247, - 45.499488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18769063, - 45.45757491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18769063, - 45.45757491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3307619, - 45.4131122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3307619, - 45.4131122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3307619, - 45.4131122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.247247, - 45.499488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468026, - 45.802692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111787, - 45.89586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25019974, - 45.54625829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.914898, - 45.527348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2373332, - 45.456907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2373332, - 45.456907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2373332, - 45.456907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.820273, - 46.030863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.820273, - 46.030863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.820273, - 46.030863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7053498, - 45.6464757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7053498, - 45.6464757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7053498, - 45.6464757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7053498, - 45.6464757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7053498, - 45.6464757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7053498, - 45.6464757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8935134, - 45.8488467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8935134, - 45.8488467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8935134, - 45.8488467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04223102, - 45.87167589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2547808, - 45.4602738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2547808, - 45.4602738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1044068, - 45.5500991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.182088, - 45.8528279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.182088, - 45.8528279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.182088, - 45.8528279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835858, - 46.158716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835858, - 46.158716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.835858, - 46.158716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1044068, - 45.5500991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01792, - 45.720608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1044068, - 45.5500991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02307, - 45.70559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02307, - 45.70559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.02307, - 45.70559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01792, - 45.720608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01792, - 45.720608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3698728, - 45.55 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3698728, - 45.55 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3698728, - 45.55 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207466, - 45.663033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3363148, - 45.5265496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4514244, - 45.4727824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4514244, - 45.4727824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4514244, - 45.4727824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207466, - 45.663033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207466, - 45.663033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1849199, - 45.4777874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3363148, - 45.5265496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1849199, - 45.4777874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1849199, - 45.4777874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1849199, - 45.4777874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1849199, - 45.4777874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04223102, - 45.87167589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.04223102, - 45.87167589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3363148, - 45.5265496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3363148, - 45.5265496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.623934, - 45.560108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521339, - 45.845524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.623934, - 45.560108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.623934, - 45.560108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521339, - 45.845524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521339, - 45.845524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521339, - 45.845524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521339, - 45.845524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.521339, - 45.845524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3363148, - 45.5265496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5475098, - 45.8570762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5475098, - 45.8570762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5475098, - 45.8570762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5464023, - 45.8552796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5464023, - 45.8552796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5464023, - 45.8552796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.914898, - 45.527348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2547808, - 45.4602738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.914898, - 45.527348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9417191, - 45.5727239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8164264, - 45.5420679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8164264, - 45.5420679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8164264, - 45.5420679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2003302, - 45.6245733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2003302, - 45.6245733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2003302, - 45.6245733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9417191, - 45.5727239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8083731, - 45.5723908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9417191, - 45.5727239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.055715, - 45.808796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.055715, - 45.808796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.055715, - 45.808796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28099446, - 45.47737767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28099446, - 45.47737767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8083731, - 45.5723908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8083731, - 45.5723908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0132707, - 45.7840008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1967603, - 45.768258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2429965, - 45.5436886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2429965, - 45.5436886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2429965, - 45.5436886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6875493, - 45.5330676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6875493, - 45.5330676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6875493, - 45.5330676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1967603, - 45.768258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0558558, - 45.7664558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1967603, - 45.768258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3785739, - 45.828258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3785739, - 45.828258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3785739, - 45.828258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6059, - 45.8691923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6059, - 45.8691923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28099446, - 45.47737767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6059, - 45.8691923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0132707, - 45.7840008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.805302, - 45.6840001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.118337, - 45.887632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.118337, - 45.887632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111787, - 45.89586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.111787, - 45.89586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.25019974, - 45.54625829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.805302, - 45.6840001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.805302, - 45.6840001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.114279, - 45.890311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.100119, - 45.731146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.100119, - 45.731146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.100119, - 45.731146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0558558, - 45.7664558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0558558, - 45.7664558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0132707, - 45.7840008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.114279, - 45.890311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.118337, - 45.887632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.114279, - 45.890311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139562, - 45.740944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21635011, - 45.61447849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21635011, - 45.61447849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21635011, - 45.61447849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47442, - 45.959944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2902348, - 45.5323749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2902348, - 45.5323749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139562, - 45.740944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2902348, - 45.5323749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139562, - 45.740944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.248129, - 45.79836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.248129, - 45.79836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.248129, - 45.79836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47442, - 45.959944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.47442, - 45.959944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "256300146", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "SIEG63", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5474457, - 50.7384692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "RENAULT HAZEBROUCK", - "ref": "01FHQK32DYB4KYY5Z3B0C21JGH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2021-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2021-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2021-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2021-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14829, - 45.73457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "879689750", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "cl667tzrr31386098qo29vpvb0n", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": " 24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.329331, - 43.49131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "850854993", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "ckuifu8qa0000jhpfd4kmpf72", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-20:00", - "start_date": "2021-10-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14829, - 45.73457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "879689750", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "cl667tzrr31386098qo29vpvb0n", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": " 24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14829, - 45.73457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "879689750", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "cl667tzrr31386098qo29vpvb0n", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": " 24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14829, - 45.73457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "879689750", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "cl667tzrr31386098qo29vpvb0n", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": " 24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.14829, - 45.73457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARGEPOLY", - "owner:ref:FR:SIREN": "879689750", - "email": "operator@chargepoly.com", - "phone": "0788984775", - "network": "CHARGEPOLY", - "ref": "cl667tzrr31386098qo29vpvb0n", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": " 24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.011409, - 48.474017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGIE EURE-ET-LOIR", - "owner:ref:FR:SIREN": "200080869", - "email": "lionel.chauvet@energie28.fr", - "phone": "0237840785", - "network": "FR*S28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.428846, - 47.053393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "2F Production", - "owner:ref:FR:SIREN": "434085395", - "email": "benjamin@2fproduction.fr", - "phone": "03 84 87 64 40", - "network": "2F Production", - "ref": "67b1865c-14bb-11ec-82a8-0242ac130003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00,Th 08:00-17:00", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6453929999999919, - 44.787885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD PESSAC", - "owner:ref:FR:SIREN": "881047948", - "email": "hippo.pessac@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941191", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6453929999999919, - 44.787885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD PESSAC", - "owner:ref:FR:SIREN": "881047948", - "email": "hippo.pessac@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941191", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6453929999999919, - 44.787885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD PESSAC", - "owner:ref:FR:SIREN": "881047948", - "email": "hippo.pessac@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941191", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6453929999999919, - 44.787885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HFOOD PESSAC", - "owner:ref:FR:SIREN": "881047948", - "email": "hippo.pessac@groupeflo.franchises.fr", - "network": "HIPPOPOTAMUS", - "ref": "EVB-P1941191", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1459805, - 50.6399697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "ANS COM", - "ref": "01FEG2Q7790MKZPGT58T8G1KD8", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8965763, - 50.6561949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "BDS MENUISERIE", - "ref": "01FEK79E4NNDZAPESGBYSYPZ7J", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89, - 44.02 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "167730c5-b7ef-48d4-b39c-9337bfece636", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.7103309, - 49.0313229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "62570df4-ab8b-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828324822319736, - 43.78639927025314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1485441, - 50.7582304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "ed2da8f2-b28e-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.503644299999999, - 44.6477737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "747a4ee8-b28d-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9041925, - 44.1160294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "4daae94a-c7db-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.050015999999999, - 44.04692499999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "4d3a0cb6-c7db-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.345135599999999, - 41.69983680000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "64117dc4-cf8e-11ed-afa1-0242ac120002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.118697, - 43.5871748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "754374751", - "network": "LUMI'IN", - "ref": "34e85270-ea64-11ed-a05b-0242ac120003", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83, - 43.79 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "cpo@lumi-in.fr", - "phone": "04 82 79 82 82", - "network": "LUMI'IN", - "ref": "a0a9bb0e-4199-11ec-81d3-0242ac130003", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9942375, - 44.0769349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "47bbb1da-a79f-42b8-bc43-4d9a05039fb1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.105857, - 50.5314804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "LE DOMAINE DES CIGOGNES", - "ref": "01FENA6FWRWNN3X1EHFBAQ53ZG", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1, - 47.48 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "450743398", - "email": "europa.hotel.entretien@gmail.com", - "network": "Hôtel EUROPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.532536, - 49.292436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "215701061", - "email": "exploitation@freshmile.com", - "phone": "03.68.78.14.35", - "network": "FRESMILE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.535945, - 49.289694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "215701061", - "email": "exploitation@freshmile.com", - "phone": "03.68.78.14.35", - "network": "FRESMILE", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64, - 47.7 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "La dilettante", - "owner:ref:FR:SIREN": "812439511", - "email": "jb@brasserieladilettante.com", - "phone": "0610166210", - "network": "LA DILETTANTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 10:00-20:00", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0448811, - 50.5467231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "GOOD KING", - "ref": "01FEXVKTTEMPX67SNSGRWXERZA", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003416", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003416", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003417", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003417", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003418", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.654826, - 47.353958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HERVE THERMIQUE", - "owner:ref:FR:SIREN": "627220049", - "email": "bornederecharge@herve-thermique.com", - "phone": "247682000", - "network": "HERVE THERMIQUE IRVE", - "ref": "VRT_003418", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6196363424603306, - 47.11494422473446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Virta", - "owner:ref:FR:SIREN": "399780097", - "email": "support@virta.global", - "phone": "33186472690", - "network": "Réseau de recharge Virta Public", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.573539, - 50.408746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "STBM", - "ref": "01FF28B6WNPQGFRVWMT6FVVV9V", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19, - 45.73 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ESPACE AUTO COURNON", - "owner:ref:FR:SIREN": "490391620", - "email": "espaceautocournon@orange.fr", - "phone": "0473848307", - "network": "ESPACE AUTO COURNON", - "ref": "01FEJX4YZEHDSET14TRKNSJJ2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.831599, - 50.485561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "315255752", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Brasserie Castelain", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.831599, - 50.485561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "315255752", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Brasserie Castelain", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.831599, - 50.485561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "315255752", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Brasserie Castelain", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.28, - 48.61 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "415183680", - "email": "contact@evbox.com", - "phone": "+‭33 1 41 44 70 47‬", - "network": "EVBOX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.203439987359303, - 50.99486000882223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Société LEVAROY, Monsieur LEROY", - "owner:ref:FR:SIREN": "499606739", - "email": "levaroy@orange.fr", - "phone": "0624854294", - "network": "Levaroy", - "ref": "01FB4PZ8WF60XF3FXH7C4M33S9", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912101, - 44.419857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WUV7HSEG7Z", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.976144, - 44.989731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XNTOYCDUUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063022, - 44.332828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HHI7NXS2BU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.140972, - 44.358895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HLIQFU7MBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.709302, - 44.441867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FT9RYLHLGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.936933, - 45.015669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRERGYFIWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799172, - 44.702527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VJR4KERRP4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819175, - 44.752224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DZI9RFFUXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.27678869, - 44.5691193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XPWLH9URLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960262, - 45.229445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JKA3JEAMYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9767, - 44.9891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RHLBTLPSI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957015, - 44.972802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HCVY8ZZGX8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.985143, - 45.122126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJORIJEACH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.954134, - 45.291376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XEAAPBSHGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.993811, - 45.290854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KMY7EK3TVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.060403, - 44.522082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YOVTZBLZ6Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.802167, - 44.418065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QRT5VAQ5PW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9711, - 45.5471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G15FUATVOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70472835, - 44.35463006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WKHCVF4ZLP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.127572, - 44.357458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PTMJY7PQFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.883411, - 44.92895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X215JLJ2YH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53849131, - 44.20221446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KUZMMX4TIX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.426297, - 44.378797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4CTJBHF9Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845401, - 45.067357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S5JXS0NDKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902889, - 44.904445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KOKMLXJ1C1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844279, - 45.013752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UHWF1QXLIT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872427, - 45.001602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ONVAVTDPJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839749, - 44.769233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KDSOJBUKIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.118107, - 44.35214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EDVOP2GKDT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70472835, - 44.35463006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WKHCVF4ZLP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912101, - 44.419857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WUV7HSEG7Z", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.885265, - 44.931448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D5L0ETPPMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.218949, - 44.428743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMHSNRMBVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.885265, - 44.931448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D5L0ETPPMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.883411, - 44.92895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X215JLJ2YH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.929752, - 44.950546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICYZM13ZT9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904457, - 44.904052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TL1WGTVEO9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81653, - 45.176935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RDFEUWJLV7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.893549, - 44.946232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PO6ZR7Q3T0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.994846, - 45.322879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LK4IORN6OX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04475, - 45.0434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CLMHBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04918, - 45.0448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TWVNEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05134, - 45.0451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RQNSQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05015, - 45.0492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JGECQF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04918, - 45.0448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TWVNEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04475, - 45.0434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CLMHBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05586, - 45.0422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NZAXHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05134, - 45.0451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RQNSQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05015, - 45.0492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JGECQF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.041824, - 45.29267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WTKHQRLVGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44251, - 45.0202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HMQVVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44251, - 45.0202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HMQVVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2494, - 45.06 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JMYBDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2494, - 45.06 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JMYBDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29092, - 45.0166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPRXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29092, - 45.0166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPRXBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32729, - 45.0293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYVBBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.020937, - 44.72668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHCKIJOAXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024275, - 44.727057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TNY0MUAT3P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873418, - 45.170177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IVVBJ8KBSM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356327, - 44.414245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KU7GOCOQLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859351, - 45.184396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "T80X29F55X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.934015, - 44.610178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WJASLMUGE9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.133801, - 44.585658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XB7KJGMX1B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.062747, - 44.646529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OZC3CQY0LP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.091215, - 44.711668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HYERDCGEKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381235, - 44.486233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GHGFD1VXML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2581, - 44.41145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTXRRAG7VZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.898153, - 44.948826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RTRXS7Y6C9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056612, - 44.714312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LR3Z5GMDXD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.903566, - 44.933541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZIUHTQE97T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918842, - 44.762521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4ZIKZMGVU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049421, - 45.092633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CLMU9GFZZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0291181, - 45.2558692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SWKGDBKOKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.200007, - 44.697264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AKHOI6DR2E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.142652, - 45.194985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XZXALUKTTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056833, - 44.71694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KVCB2FBNZ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.441792, - 44.174437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F36WUWT4H7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.017178, - 44.730592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IY1C479BL4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88804, - 44.925184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WM3WAO2RMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.391256, - 45.674221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W5KMVUFDR3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39107, - 45.67794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NKIJMI48IG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.388156, - 45.677082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZHGBKZ4XPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94363, - 45.561391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CARIVD0JDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92185, - 45.71688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "J9OYDDWH7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.390545, - 45.676146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BEXG8FSQXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.960062, - 45.530767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IOJV93PGDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.974522, - 45.576509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QMCDRLTNYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156654, - 45.557526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HAERKHAILF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.887285, - 45.592874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F8KFZXGKDI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.974522, - 45.576509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QMCDRLTNYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.955532, - 45.578509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FLPBRFXHAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83655, - 45.846898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YHCKATCVZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.391256, - 45.674221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W5KMVUFDR3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156654, - 45.557526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HAERKHAILF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.960062, - 45.530767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IOJV93PGDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.000266, - 45.499247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L8FMQOSKS4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.955532, - 45.578509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FLPBRFXHAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.134802, - 45.68745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FW8JB0GBVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.870602, - 45.646947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYKRAJWUI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.911907, - 45.562052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JWSJQ6RNHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.925893, - 45.564292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GIB8D1B3ML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.922962, - 45.718341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QH3MXFSZJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.032985, - 45.480671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I8CSUBSTQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.965906, - 45.57173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DZTEO5VMC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.875031, - 45.596798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFDSQONRUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.946799, - 45.786238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HV3YYVD9CQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.916712, - 45.588654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MSU1UWQGZE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.897872, - 45.560258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVZ0P4QBGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92185, - 45.71688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "J9OYDDWH7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89316, - 45.5928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CDVYRNUDQ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912892, - 45.645266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QKKIKZK3ZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.106362, - 45.714598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O2ILRGMRRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.83655, - 45.846898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YHCKATCVZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.051382, - 45.501175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WXHZWTA5ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.000266, - 45.499247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L8FMQOSKS4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.887285, - 45.592874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F8KFZXGKDI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.134802, - 45.68745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FW8JB0GBVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.051382, - 45.501175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WXHZWTA5ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894544, - 44.934744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H5N3BW8X1L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99937, - 44.9995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CANHER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.925893, - 45.564292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GIB8D1B3ML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.873462, - 45.640808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FBYQDSUWIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.868916, - 45.645002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRD1O42B4X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85806, - 45.64881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YXWYDYAZRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.859653, - 45.65551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DWG6IHEU7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.99937, - 44.9995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CANHER", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894331, - 44.93486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QYCADMQWOA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.052549, - 45.044026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMXZZQL6TV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.983438, - 45.54879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CY2ZODO2QU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08223, - 44.3298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WL5XZNI7WZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08223, - 44.3298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WL5XZNI7WZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.017178, - 44.730592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IY1C479BL4", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894331, - 44.93486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QYCADMQWOA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.052549, - 45.044026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMXZZQL6TV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.450919, - 44.616002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WDLJPIX1QR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.983865, - 45.050388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GXXHNQ5HXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96026, - 45.57204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L26DHUKX0L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.117952, - 45.458288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KQBUJVHM6Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912892, - 45.645266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QKKIKZK3ZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39107, - 45.67794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NKIJMI48IG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.106362, - 45.714598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O2ILRGMRRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.901328, - 45.583496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FA3KQKMH2K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.971748, - 45.545721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C4QMLCCH2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9711, - 45.5471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G15FUATVOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.904766, - 45.578371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZSP1FHHFPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.936632, - 45.565976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y4YC7FBRZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.924012, - 45.588643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRFEJQ1ZVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.388156, - 45.677082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZHGBKZ4XPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.873377, - 45.640928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OH9QA6KXPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.390545, - 45.676146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BEXG8FSQXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.977494, - 45.572016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OM98B5NCGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02737, - 44.9355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYBZKF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.973817, - 45.568758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WOQTPMJD7R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94363, - 45.561391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CARIVD0JDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.868361, - 45.644002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PH6VWTTSVI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.875138, - 45.639726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQCR2BEGJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.32729, - 45.0293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYVBBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53849131, - 44.20221446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KUZMMX4TIX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02737, - 44.9355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYBZKF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93832, - 44.8003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CLFAVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.973817, - 45.568758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WOQTPMJD7R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844279, - 45.013752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UHWF1QXLIT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.921365, - 45.018041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QIYDUPSLD7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845401, - 45.067357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S5JXS0NDKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872427, - 45.001602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ONVAVTDPJC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.133801, - 44.585658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XB7KJGMX1B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381235, - 44.486233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GHGFD1VXML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.091215, - 44.711668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HYERDCGEKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.934015, - 44.610178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WJASLMUGE9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2581, - 44.41145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTXRRAG7VZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.356327, - 44.414245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KU7GOCOQLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.898153, - 44.948826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RTRXS7Y6C9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.893549, - 44.946232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PO6ZR7Q3T0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902889, - 44.904445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KOKMLXJ1C1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.976144, - 44.989731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XNTOYCDUUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9767, - 44.9891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RHLBTLPSI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.709302, - 44.441867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FT9RYLHLGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.426297, - 44.378797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4CTJBHF9Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.983865, - 45.050388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GXXHNQ5HXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.441792, - 44.174437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F36WUWT4H7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056612, - 44.714312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LR3Z5GMDXD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.820926, - 45.119321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBA0BNH7EP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.760774, - 44.532597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BAWG4VXXRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.020937, - 44.72668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHCKIJOAXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83665, - 45.0711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IL2LVDJOZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.760774, - 44.532597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BAWG4VXXRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918842, - 44.762521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4ZIKZMGVU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.062747, - 44.646529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OZC3CQY0LP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.024275, - 44.727057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TNY0MUAT3P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83665, - 45.0711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJHDGEW1RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.049421, - 45.092633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CLMU9GFZZA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0291181, - 45.2558692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SWKGDBKOKM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.200007, - 44.697264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AKHOI6DR2E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.142652, - 45.194985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XZXALUKTTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83665, - 45.0711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJHDGEW1RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83665, - 45.0711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IL2LVDJOZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.056833, - 44.71694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KVCB2FBNZ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.936933, - 45.015669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRERGYFIWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.960262, - 45.229445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JKA3JEAMYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.27678869, - 44.5691193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XPWLH9URLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790972, - 44.33132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DOTZDZMFFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.763941, - 44.345787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4BGHJXHOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769987, - 44.347337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EBYI5NPO9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.401908, - 44.712392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LOGXNLQR1V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.372968, - 44.751122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BIAIJUVWY6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886768, - 45.272129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AVUGAR5K1V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.367919, - 44.75614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HLDZRB6LRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.060403, - 44.522082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YOVTZBLZ6Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.763941, - 44.345787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4BGHJXHOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85676, - 44.36141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E6Y7M7AMVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.118107, - 44.35214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EDVOP2GKDT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.218949, - 44.428743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMHSNRMBVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813139, - 45.295163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVTPWBGVUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.886768, - 45.272129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AVUGAR5K1V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769987, - 44.347337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EBYI5NPO9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85676, - 44.36141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E6Y7M7AMVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894544, - 44.934744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H5N3BW8X1L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813139, - 45.295163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVTPWBGVUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.747654, - 44.549544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URHEE05T5G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.450919, - 44.616002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WDLJPIX1QR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.839749, - 44.769233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KDSOJBUKIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.957015, - 44.972802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HCVY8ZZGX8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.873418, - 45.170177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IVVBJ8KBSM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.859351, - 45.184396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "T80X29F55X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.802167, - 44.418065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QRT5VAQ5PW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.81653, - 45.176935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RDFEUWJLV7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799172, - 44.702527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VJR4KERRP4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.819175, - 44.752224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DZI9RFFUXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.985143, - 45.122126 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJORIJEACH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744417, - 44.556301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VGOBDGLPKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.790972, - 44.33132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DOTZDZMFFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.274113, - 44.273155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S2X4SQRIWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.190152, - 44.23775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IOEFVEOSYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9333, - 44.5448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z4C1VGM0DH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.277503, - 44.277843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VPY490SRSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.756491, - 44.556028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQCHFMZVJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.751107, - 44.561668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HT6OIBP1HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872588, - 44.642778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FDJN70AGER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703235, - 44.376507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PCPZSNAJOW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781791, - 44.649576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R8XY0SZE9U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88637, - 44.944521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CUG99GGOWF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93998, - 44.8613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UTSMAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07845, - 44.9669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NGKNNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89511442, - 44.93115343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LWXQSAKCCJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02580276, - 44.72066204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SURFS8ZTGN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02580276, - 44.72066204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SURFS8ZTGN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13266647, - 44.36218458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LIEIZRQF8F", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13266647, - 44.36218458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LIEIZRQF8F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88637, - 44.944521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CUG99GGOWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.07845, - 44.9669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NGKNNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75091764, - 44.56067532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UKTMEQNRXJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.75091764, - 44.56067532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UKTMEQNRXJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89067, - 44.8405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DXPLVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89067, - 44.8405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DXPLVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0923, - 45.0034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SXUCBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0923, - 45.0034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SXUCBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37037, - 44.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MDEFSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06121, - 45.0304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XJLPEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02596, - 44.9741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KRPNCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.01835, - 44.8993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GBMHGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88401, - 44.8756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MBKYAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93832, - 44.8003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CLFAVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41656, - 44.9687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SGRPBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41656, - 44.9687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SGRPBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92192, - 44.86594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JLQKAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92192, - 44.86594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JLQKAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0225, - 44.8715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLZYYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05141, - 45.0423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BRKYBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05586, - 45.0422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NZAXHX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89511442, - 44.93115343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LWXQSAKCCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05141, - 45.0423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BRKYBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87871, - 44.874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TZZHBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0225, - 44.8715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLZYYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88401, - 44.8756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MBKYAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87871, - 44.874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TZZHBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02596, - 44.9741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KRPNCH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.93998, - 44.8613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UTSMAL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37037, - 44.8955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MDEFSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.01835, - 44.8993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GBMHGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799586, - 44.541316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K8UHYWJQHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.97910139, - 44.4428751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZZEIEVWEMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781791, - 44.649576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R8XY0SZE9U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.085042, - 45.080627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BIE1NOC2IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.872588, - 44.642778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FDJN70AGER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799586, - 44.541316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K8UHYWJQHE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82037, - 44.51525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZIMRJWFPJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71889, - 44.486352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HON0JAOCCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.085042, - 45.080627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BIE1NOC2IO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.930583, - 44.285472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VTPM86E6SG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70697, - 44.666304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IHDYYMOWSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828305, - 44.24526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUVLYZNAC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838851, - 44.288371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HANDNASEFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.866178, - 44.337725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EP9B5SQXIV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.69954, - 44.377282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GE3HA5PUXP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.698986, - 44.372311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTGDQIHOM0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.820926, - 45.119321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBA0BNH7EP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70697, - 44.666304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IHDYYMOWSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.69954, - 44.377282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GE3HA5PUXP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703235, - 44.376507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PCPZSNAJOW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09518, - 44.8994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VZZKPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.96484, - 44.9165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NYDEBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.03997, - 45.0169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PNSRMA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05117, - 45.0395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XUNZRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06121, - 45.0304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XJLPEH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.03997, - 45.0169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PNSRMA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.96484, - 44.9165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NYDEBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09518, - 44.8994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VZZKPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05117, - 45.0395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XUNZRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71889, - 44.486352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HON0JAOCCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.698986, - 44.372311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTGDQIHOM0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838851, - 44.288371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HANDNASEFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.97910139, - 44.4428751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZZEIEVWEMC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82037, - 44.51525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZIMRJWFPJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828305, - 44.24526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUVLYZNAC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.921365, - 45.018041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QIYDUPSLD7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.866178, - 44.337725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EP9B5SQXIV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.930583, - 44.285472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VTPM86E6SG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.983438, - 45.54879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CY2ZODO2QU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.583329, - 45.129631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HUNZB9FZ2G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.977494, - 45.572016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OM98B5NCGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.544305, - 45.173596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FDY5ILTA9I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.587042, - 45.366279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVTHLSH5KU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08628, - 45.6679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHAMCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08628, - 45.6679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHAMCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.076071, - 45.392746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YHBVNIPGQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.636785, - 45.455873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SNJTCRYXPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5761418, - 44.9751199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NKBQJ8XDAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.99027, - 45.371901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EMAQAISOIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4705944, - 45.6513139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H6VUVLTMNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.020297, - 45.432277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYFFQZBYFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992505, - 45.2996611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EDM5XZ78S5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6337565, - 44.9155285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJCGRO59VL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.420295, - 45.39962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UYRULM0CVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3891472, - 45.4907722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LMO4CYWQ7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.476072, - 45.385062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3MF1HLOKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.343487, - 45.0595127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GKE5UHODFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56859, - 44.902538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GH4VMCSAZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.671319, - 44.907212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JCC4MS2WXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.587042, - 45.366279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVTHLSH5KU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410519, - 45.207744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HEQVLNPGAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412653, - 45.170807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IVIDV8DXOP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.27874, - 45.59071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVKMQBXTEP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9175, - 45.5281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CYFHJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.01369, - 45.5054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AZPDRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25441, - 45.759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELRFKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91129, - 45.5053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MAMVPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06444, - 45.09059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CMTC5TQSOW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25441, - 45.759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELRFKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.439585, - 45.223157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NAPOVOMVVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.27874, - 45.59071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVKMQBXTEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.523008, - 45.543217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XHERGSSQS7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1867, - 45.73356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X3OK9GZBRM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1867, - 45.73356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X3OK9GZBRM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34407, - 45.3407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNXYMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9175, - 45.5281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CYFHJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16562, - 45.3936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GAXPWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16562, - 45.3936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GAXPWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6714725, - 45.5346056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S17UEJU18E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.887383, - 45.310644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z6CIOZHDCI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.47326, - 45.674127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KBRRRM6IGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12483, - 45.013227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AGUITTXLTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90136, - 45.4203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XQSNJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585147, - 45.536575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FT0LK4QOQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84452, - 45.5589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CDANYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00383028, - 45.5539001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QJDZRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00383028, - 45.5539001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QJDZRN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84452, - 45.5589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CDANYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.607645, - 45.587038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PJQBERSPPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90136, - 45.4203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XQSNJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.362579, - 45.639335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PUXYSIZM6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85669, - 45.3394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MNCBAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.070816, - 45.094943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NV2EOLFRDB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3891472, - 45.4907722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LMO4CYWQ7Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.420295, - 45.39962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UYRULM0CVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90845, - 44.90066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DDGRGVA9AS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42419, - 45.443313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UWVSZLJ2WU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75416, - 44.81704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYKO4XRXGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.476562, - 45.485728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KSTK4RC9AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85669, - 45.3394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MNCBAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.598293, - 45.349774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GGVI7THWNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.513731, - 45.428405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICUCTV9PK5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.42419, - 45.443313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UWVSZLJ2WU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.248005, - 45.100607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SOFCJVBSHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.544305, - 45.173596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FDY5ILTA9I", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.63757, - 45.2958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NWPV9SOVSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.63757, - 45.2958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NWPV9SOVSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.362579, - 45.639335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PUXYSIZM6Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.702787, - 44.970991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UOEXIUJAXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75416, - 44.81704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYKO4XRXGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.476072, - 45.385062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3MF1HLOKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5698368, - 45.3500388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PJVJCPOJL2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.476562, - 45.485728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KSTK4RC9AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.744811, - 44.960441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YA9IINLOWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.070816, - 45.094943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NV2EOLFRDB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.90845, - 44.90066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DDGRGVA9AS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588077, - 45.368226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBDELKZ02M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1450261, - 45.6165465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IQXD4XD3T3", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1450261, - 45.6165465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IQXD4XD3T3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06444, - 45.09059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CMTC5TQSOW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.01369, - 45.5054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AZPDRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06389, - 45.6309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JUZPMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03424, - 45.0555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HGHRMSS0WP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29093, - 45.4559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DNLKCM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29093, - 45.4559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DNLKCM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24054, - 45.59485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JLVMUSR7MM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24054, - 45.59485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JLVMUSR7MM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6381, - 44.7888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QP0YIL8IFI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.54047, - 45.6267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YLGMS2ZOQX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86115, - 44.8644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TMF2EKI4VW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.54047, - 45.6267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YLGMS2ZOQX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31921, - 45.1552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZW7N7BPXFX", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59367, - 45.3633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NDUJH0PIS3", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6381, - 44.7888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QP0YIL8IFI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86115, - 44.8644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TMF2EKI4VW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59367, - 45.3633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NDUJH0PIS3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12483, - 45.010306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YSINDSLO2T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2770589, - 45.5937983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPBXS3RZKU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.067759, - 45.09145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CXDGTIEHUK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31921, - 45.1552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZW7N7BPXFX", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.155459, - 45.613229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G7PHWB2AIL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.067759, - 45.09145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CXDGTIEHUK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97673, - 45.3424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O4FMROVXLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.071512, - 46.045819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URQIIQNRHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0664465, - 46.0285599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HFHFSNPFL8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0747703, - 46.0414962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FZYNI4UPQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06897568, - 46.07763561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JMKUVVPZI3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08614, - 46.025338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "J8KQANINTN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0672642, - 46.0330277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KMKK2WXJUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0631344, - 46.0376702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WIBXDEW7O1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97673, - 45.3424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O4FMROVXLK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.155459, - 45.613229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G7PHWB2AIL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.812742, - 45.221615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FDSV6LVTDM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.812742, - 45.221615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FDSV6LVTDM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16856, - 45.7503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ERWQRN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83469, - 45.473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O85SVV2ACJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83469, - 45.473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O85SVV2ACJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16856, - 45.7503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ERWQRN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03424, - 45.0555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HGHRMSS0WP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.276082, - 45.58996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "USPQX0MDQ8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12483, - 45.010306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YSINDSLO2T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76984, - 45.3191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KHRDRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26696, - 45.3291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NWEPJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33732, - 45.8525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GARMFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33732, - 45.8525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GARMFX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80409, - 45.3499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YCJKYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22137, - 45.7563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELMCAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80409, - 45.3499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YCJKYF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19798, - 45.7681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZFXETG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.622193, - 44.826436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B46FPVWMDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26696, - 45.3291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NWEPJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16758, - 45.6793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NNKJNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.881739, - 45.283485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LDJEOI8BK0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80239, - 45.3621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "REMDRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76984, - 45.3191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KHRDRG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91129, - 45.5053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MAMVPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80239, - 45.3621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "REMDRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06389, - 45.6309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JUZPMH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.319735, - 45.68719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SMK51LMAB7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05698, - 45.3391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YTBQSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.16758, - 45.6793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NNKJNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2770589, - 45.5937983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPBXS3RZKU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26067, - 45.3918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LCJTWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12667, - 45.6934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FMSJHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.276082, - 45.58996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "USPQX0MDQ8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12667, - 45.6934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FMSJHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77447, - 45.3964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FELLSQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77447, - 45.3964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FELLSQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00648, - 45.4409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HXTWYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26067, - 45.3918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LCJTWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00648, - 45.4409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HXTWYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05698, - 45.3391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YTBQSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.34407, - 45.3407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNXYMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.14015, - 45.4975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ACUAKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.14015, - 45.4975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ACUAKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22137, - 45.7563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELMCAG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24647, - 45.7252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GRPQDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24647, - 45.7252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GRPQDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.19798, - 45.7681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZFXETG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.744811, - 44.960441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YA9IINLOWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0308339, - 45.0527698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VS6SOGHFTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.971748, - 45.545721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C4QMLCCH2R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0308339, - 45.0527698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VS6SOGHFTE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.737686, - 45.390089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYPPQA0TJQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.815538, - 45.341601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WJJPG4Z7MN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.803005, - 45.226977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SNSM4WFCED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.856414, - 45.029217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YWRAKBDU72", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.829775, - 45.144034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SAUDIUNPPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.564157, - 45.328211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYPH3MTL0S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.752153, - 45.433729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PGI7OZI3HX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87483, - 45.11147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZUQ6OZWIHO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55164676, - 45.07208481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W1ACYG8P4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5271472, - 45.0326389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UGZUCTHE6K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630496, - 45.170753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AEOHHR2DTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.583329, - 45.129631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HUNZB9FZ2G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22312, - 45.54915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QRKRSXDLOB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.820972, - 45.241288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LGOYUQZSSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.286122, - 45.55948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JLQWOQOKKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.30582, - 45.557352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TJJ9KFP8UM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5698368, - 45.3500388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PJVJCPOJL2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8611931, - 45.21769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RDH1HYPVXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8611931, - 45.21769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RDH1HYPVXW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21895, - 45.621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X12ABRPVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36198, - 45.3908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IBY7XIF9QN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.887383, - 45.310644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z6CIOZHDCI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.343487, - 45.0595127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GKE5UHODFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56859, - 44.902538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GH4VMCSAZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.671319, - 44.907212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JCC4MS2WXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24093, - 45.258479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BYXYO6YXTR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.67848, - 44.757898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FL632BDMHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36198, - 45.3908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IBY7XIF9QN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404874, - 45.81437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YXQDXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21895, - 45.621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X12ABRPVCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.404874, - 45.81437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YXQDXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77067, - 45.4387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XZCHPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77067, - 45.4387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XZCHPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.829775, - 45.144034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SAUDIUNPPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.564157, - 45.328211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYPH3MTL0S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.01665, - 45.6128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OE2C6C8Q1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.01665, - 45.6128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OE2C6C8Q1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.47326, - 45.674127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KBRRRM6IGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.585147, - 45.536575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FT0LK4QOQ6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588077, - 45.368226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBDELKZ02M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.117952, - 45.458288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KQBUJVHM6Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.859653, - 45.65551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DWG6IHEU7O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.868916, - 45.645002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRD1O42B4X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.870602, - 45.646947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYKRAJWUI5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.255442, - 45.555121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVEJP6FQDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.255442, - 45.555121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVEJP6FQDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85806, - 45.64881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YXWYDYAZRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.868361, - 45.644002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PH6VWTTSVI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.875138, - 45.639726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQCR2BEGJF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.946799, - 45.786238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HV3YYVD9CQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.873462, - 45.640808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FBYQDSUWIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.873377, - 45.640928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OH9QA6KXPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.911907, - 45.562052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JWSJQ6RNHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.924012, - 45.588643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRFEJQ1ZVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.901328, - 45.583496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FA3KQKMH2K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.936632, - 45.565976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y4YC7FBRZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.904766, - 45.578371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZSP1FHHFPM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.897872, - 45.560258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVZ0P4QBGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89316, - 45.5928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CDVYRNUDQ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.99027, - 45.371901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EMAQAISOIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.319735, - 45.68719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SMK51LMAB7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992505, - 45.2996611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EDM5XZ78S5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4705944, - 45.6513139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H6VUVLTMNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.020297, - 45.432277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYFFQZBYFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.607645, - 45.587038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PJQBERSPPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.439585, - 45.223157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NAPOVOMVVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.412653, - 45.170807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IVIDV8DXOP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.598293, - 45.349774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GGVI7THWNN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6714725, - 45.5346056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S17UEJU18E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.916712, - 45.588654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MSU1UWQGZE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.410519, - 45.207744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HEQVLNPGAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.523008, - 45.543217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XHERGSSQS7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.922962, - 45.718341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QH3MXFSZJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96026, - 45.57204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L26DHUKX0L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.965906, - 45.57173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DZTEO5VMC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.875031, - 45.596798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFDSQONRUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.032985, - 45.480671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I8CSUBSTQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.636785, - 45.455873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SNJTCRYXPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.076071, - 45.392746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YHBVNIPGQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6337565, - 44.9155285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJCGRO59VL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4828056, - 45.2955083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DCNJKNE4HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8679, - 45.270236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JB7O75BBKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.932438, - 45.252998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPOTF1HQQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.888787, - 45.238327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UFKDSKNUHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.964939, - 45.271113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YLM0HHUMDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.775626, - 45.020777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KZDPHHY9QV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902, - 45.0906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XC9VDLJNF4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.538613, - 45.279523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YALRDZFAG8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.527525, - 45.1274889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TL3NL9QBRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.820972, - 45.241288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LGOYUQZSSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03748, - 45.127339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PK3YEM8DDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.398483, - 45.5444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISLSCODQRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41652, - 45.581692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GBOCPUKOTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.218808, - 45.174304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "A8IMSEI4DH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.326985, - 45.117174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MD0GNWWEBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.778528, - 44.95151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "T2SVHB67IN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.503642, - 45.350166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QSGWZRZ34C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.803005, - 45.226977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SNSM4WFCED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.737686, - 45.390089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYPPQA0TJQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4431, - 45.562975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZX5LMPLOCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.752153, - 45.433729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PGI7OZI3HX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12483, - 45.013227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AGUITTXLTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.702787, - 44.970991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UOEXIUJAXI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.248005, - 45.100607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SOFCJVBSHW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.513731, - 45.428405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICUCTV9PK5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87483, - 45.11147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZUQ6OZWIHO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.853393, - 45.415628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C4KRE3VPLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.815538, - 45.341601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WJJPG4Z7MN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4431, - 45.562975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZX5LMPLOCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.856414, - 45.029217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YWRAKBDU72", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.504107, - 45.609835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NZGBPIAKU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976983, - 44.8587405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BJ9TZMED5E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.947731, - 44.817169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UJZXTSOGHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.30582, - 45.557352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TJJ9KFP8UM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22312, - 45.54915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QRKRSXDLOB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5271472, - 45.0326389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UGZUCTHE6K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.286122, - 45.55948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JLQWOQOKKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.048525, - 45.376141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMMZ7I0YRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.077811, - 45.056067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KAH5MCU0PR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5761418, - 44.9751199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NKBQJ8XDAJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.888787, - 45.238327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UFKDSKNUHA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.503642, - 45.350166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QSGWZRZ34C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.218808, - 45.174304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "A8IMSEI4DH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03748, - 45.127339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PK3YEM8DDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.778528, - 44.95151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "T2SVHB67IN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.964939, - 45.271113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YLM0HHUMDL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8679, - 45.270236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JB7O75BBKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.326985, - 45.117174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MD0GNWWEBH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06886, - 45.08731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BR5VEJ4LUC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902, - 45.0906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XC9VDLJNF4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06886, - 45.08731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BR5VEJ4LUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.18387, - 45.6147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SKUWSYWI8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.18387, - 45.6147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SKUWSYWI8M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79927, - 45.37 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVQGYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.79927, - 45.37 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVQGYC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11627, - 44.98706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OJBNYNLLXC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11627, - 44.98706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OJBNYNLLXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.630496, - 45.170753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AEOHHR2DTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.55164676, - 45.07208481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W1ACYG8P4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.077811, - 45.056067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KAH5MCU0PR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.853393, - 45.415628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C4KRE3VPLQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.41652, - 45.581692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GBOCPUKOTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.527525, - 45.1274889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TL3NL9QBRT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.504107, - 45.609835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NZGBPIAKU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.398483, - 45.5444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISLSCODQRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976983, - 44.8587405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BJ9TZMED5E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.947731, - 44.817169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UJZXTSOGHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.048525, - 45.376141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMMZ7I0YRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.622193, - 44.826436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B46FPVWMDM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.903566, - 44.933541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZIUHTQE97T", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.881739, - 45.283485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LDJEOI8BK0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24093, - 45.258479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BYXYO6YXTR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.67848, - 44.757898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FL632BDMHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4828056, - 45.2955083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DCNJKNE4HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.775626, - 45.020777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KZDPHHY9QV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.932438, - 45.252998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPOTF1HQQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.538613, - 45.279523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YALRDZFAG8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.904457, - 44.904052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TL1WGTVEO9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29221, - 45.11508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UINJVNH6Q6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88804, - 44.925184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WM3WAO2RMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.68414, - 46.5176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "dompierre", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94514, - 44.1987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MNVNQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94514, - 44.1987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MNVNQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238784, - 44.090763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CA3BLMPVBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81235, - 43.9489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CCRCZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81235, - 43.9489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CCRCZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7499732, - 43.8109723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZQJLTS8LZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09219, - 43.8167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQTUEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09219, - 43.8167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQTUEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34313, - 43.7805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XBFXBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.784201, - 43.835102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TGQQ9EOFPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5085, - 43.9672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UQWWKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.805136, - 43.829352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QLKVQH0DOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7837, - 43.83019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RAATACOPRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.796637, - 43.83 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TUDR0E6GUP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78056, - 43.83339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VDPQRVEOZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.858366, - 44.266426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z3QABMCZC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992738, - 44.074343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IXBABVQUXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.230547, - 44.09287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UBG4WBEFLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13566, - 44.0327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FACVXR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13566, - 44.0327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FACVXR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.54716, - 44.0824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SZNPWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.680762, - 44.374162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JZZ4ARDOAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98638, - 43.8365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ACHVAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98638, - 43.8365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ACHVAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66765, - 43.9654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWBKSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62843, - 44.0379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZCALPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5692, - 44.290693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S4VXC1ZBVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66765, - 43.9654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWBKSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.717422, - 43.909233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BWUC0Z5W3X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23938, - 44.094728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AHJLY7UVLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7499732, - 43.8109723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZQJLTS8LZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35781, - 44.3521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PMYFKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.805136, - 43.829352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QLKVQH0DOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.890822, - 43.927252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UKPJV9OC6M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88646, - 43.7569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FANRVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.735105, - 44.419531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XQQCZS16EH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.918223, - 43.917451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANDDND3BDK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.626622, - 44.241315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YVGSKBCI4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.765247, - 43.786687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBC1X2LWNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12718, - 43.8627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KDUPPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60693, - 44.171957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CDVWPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02821, - 44.3425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TTJZND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7837, - 43.83019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RAATACOPRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60302, - 44.3699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M7ZASMMQY6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02821, - 44.3425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TTJZND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60693, - 44.171957 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CDVWPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.34313, - 43.7805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XBFXBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.038995, - 43.698242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OBSGYTJHXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60302, - 44.3699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M7ZASMMQY6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.858366, - 44.266426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z3QABMCZC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.717422, - 43.909233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BWUC0Z5W3X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3296, - 46.56562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PIHT6XLNGT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1959, - 46.10168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JCAUYPEAYA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41637, - 46.12908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WD8KTGUBE3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41637, - 46.12908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WD8KTGUBE3", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3296, - 46.56562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PIHT6XLNGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32408, - 46.5712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinshopital", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15186, - 43.7592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VSQHNQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.992738, - 44.074343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IXBABVQUXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12718, - 43.8627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KDUPPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.784201, - 43.835102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TGQQ9EOFPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.009624, - 44.095176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WXTEE2IGIX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.842387, - 43.876715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HU7ZHXIDPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23938, - 44.094728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AHJLY7UVLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.842387, - 43.876715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HU7ZHXIDPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78056, - 43.83339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VDPQRVEOZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78116, - 44.043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LPQNUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78116, - 44.043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LPQNUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.038995, - 43.698242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OBSGYTJHXU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.15186, - 43.7592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VSQHNQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31201, - 44.3711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UYBDVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31201, - 44.3711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UYBDVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.009624, - 44.095176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WXTEE2IGIX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.230547, - 44.09287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UBG4WBEFLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.765247, - 43.786687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBC1X2LWNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5085, - 43.9672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UQWWKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238784, - 44.090763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CA3BLMPVBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.680762, - 44.374162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JZZ4ARDOAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62843, - 44.0379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZCALPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.54716, - 44.0824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SZNPWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81066, - 43.9488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZBTMTF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88641, - 43.75702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZAO4L8TSGT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.515089, - 43.846434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVO21H4TWD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.95677, - 44.0431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ORK5FI3ZMM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.95677, - 44.0431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ORK5FI3ZMM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.651513, - 44.38584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AP4KK13HNF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78727, - 43.83218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IC3VKFYDUZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.81066, - 43.9488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZBTMTF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18529, - 44.0759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EHWYSYEPGP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.79858, - 43.817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IZWGVKKKLW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.18529, - 44.0759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EHWYSYEPGP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.78727, - 43.83218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IC3VKFYDUZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.651513, - 44.38584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AP4KK13HNF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94565, - 44.1913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EVXVDF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88641, - 43.75702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZAO4L8TSGT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94565, - 44.1913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EVXVDF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43503, - 44.4282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LWBQSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.515089, - 43.846434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVO21H4TWD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.79858, - 43.817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IZWGVKKKLW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.591744, - 43.855664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LK9N6FGDHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42441, - 44.9059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UJNXRL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12818, - 44.4053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VPMUW1NPUD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38994, - 44.4063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QPPN534ID0", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.59495, - 44.7351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XOOHDY43SH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.59495, - 44.7351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XOOHDY43SH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70596, - 45.2618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F5GG4XPJNB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40901, - 44.6124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SRX4IK756Y", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70596, - 45.2618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F5GG4XPJNB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57977, - 44.987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CZTFGE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64673, - 44.3671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HF7UWCT3XU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57977, - 44.987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CZTFGE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11127, - 44.6663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UVUSPH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11127, - 44.6663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UVUSPH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42441, - 44.9059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UJNXRL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76676, - 45.317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GB7J68Q0BE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64673, - 44.3671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HF7UWCT3XU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.76676, - 45.317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GB7J68Q0BE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.43503, - 44.4282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LWBQSZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97563, - 44.03 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DDUFKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5692, - 44.290693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S4VXC1ZBVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.781649, - 43.959465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "REJFYYSDM4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149061, - 44.1495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JZXFBNTFY9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.013327, - 44.11129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QYJLX8F4UH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.764642, - 43.93593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DIMB9HNUST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.626622, - 44.241315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YVGSKBCI4J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.591744, - 43.855664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LK9N6FGDHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19651, - 43.9959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XZTXRU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19651, - 43.9959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XZTXRU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62872, - 44.18199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJXUZ7WVZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.601126, - 44.370105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NTGMS3IKER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88646, - 43.7569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FANRVL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29439297, - 44.4571429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZACDZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29439297, - 44.4571429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZACDZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37018, - 43.954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BHNVCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37018, - 43.954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BHNVCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30695, - 44.1607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VPTVQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30695, - 44.1607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VPTVQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.890822, - 43.927252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UKPJV9OC6M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.735105, - 44.419531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XQQCZS16EH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22201, - 43.8438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHJVGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.77988, - 43.95895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YDYHNZJJKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.013327, - 44.11129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QYJLX8F4UH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97563, - 44.03 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DDUFKV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22201, - 43.8438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHJVGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149061, - 44.1495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JZXFBNTFY9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.77988, - 43.95895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YDYHNZJJKE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.796637, - 43.83 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TUDR0E6GUP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.654159, - 44.387667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Q95UGK3FNX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.764642, - 43.93593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DIMB9HNUST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.918223, - 43.917451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANDDND3BDK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.601126, - 44.370105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NTGMS3IKER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62872, - 44.18199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJXUZ7WVZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.781649, - 43.959465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "REJFYYSDM4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35087674, - 44.41307066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TFDWRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35781, - 44.3521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PMYFKJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.654159, - 44.387667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Q95UGK3FNX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.35087674, - 44.41307066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TFDWRB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.396184, - 46.127122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "aqualudique", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32408, - 46.5712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinshopital", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40901, - 44.6124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SRX4IK756Y", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.68414, - 46.5176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "dompierre", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74365, - 46.2869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ERZCZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.74365, - 46.2869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ERZCZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59832, - 46.3444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RNFAUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59689, - 46.3511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KVYTWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.55699, - 46.3273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WVAJPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.55699, - 46.3273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WVAJPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59832, - 46.3444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RNFAUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5904, - 46.3149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MDFRBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60561, - 46.3301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJWERJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60561, - 46.3301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SJWERJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53289, - 46.3619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YQUVUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53289, - 46.3619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YQUVUC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5904, - 46.3149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MDFRBN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59689, - 46.3511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KVYTWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2886, - 46.30993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ODTKP8CH6Y", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34381, - 46.54197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ORQZ0JAUKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.34381, - 46.54197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ORQZ0JAUKA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40415, - 46.3128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "varennesmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43955, - 46.1385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cussetgilbert", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26319, - 46.471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "590305c6aad59", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05179, - 46.4088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lemontet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9377, - 46.7277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lurcylevis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60975, - 46.3396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montlucongi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95552, - 46.3171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montmaraulth", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32884, - 46.5618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsroche", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.95552, - 46.3171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montmaraulth", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60423, - 46.3414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montluconpi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60423, - 46.3414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montluconpi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0522, - 46.5833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "bourbon", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36633, - 46.4392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "bessay", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0522, - 46.5833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "bourbon", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27081, - 46.1884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "broutvernet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81824, - 46.6173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cerilly", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.27081, - 46.1884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "broutvernet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26319, - 46.471 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "590305c6aad59", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66512, - 46.07 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lemayet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.05179, - 46.4088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lemontet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42901, - 46.12431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VUW4OJTP6F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42901, - 46.12431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VUW4OJTP6F", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2886, - 46.30993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ODTKP8CH6Y", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.85832, - 46.3964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WQUYNQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4349, - 46.1247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63455, - 46.1667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZSZXKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63455, - 46.1667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZSZXKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36337, - 46.5535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "yzeurelib", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66032, - 46.2883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HXBSAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.66032, - 46.2883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HXBSAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59894, - 46.3386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JPWBTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.85832, - 46.3964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WQUYNQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42184, - 46.1217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VICHY3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.59894, - 46.3386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JPWBTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36337, - 46.5535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "yzeurelib", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35443, - 46.5653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "yzeure1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35443, - 46.5653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "yzeure1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62275452, - 44.88128484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CVWVXPR8FU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62275452, - 44.88128484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CVWVXPR8FU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0728184, - 46.0344539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E1O6R0CI23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40415, - 46.3128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "varennesmairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4349, - 46.1247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61675, - 46.3457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRQEES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.426512, - 46.130601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96364, - 46.468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BUXIERE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478734, - 46.37378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WQFNAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478734, - 46.37378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WQFNAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45557, - 46.1327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVJNYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45557, - 46.1327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVJNYU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96364, - 46.468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BUXIERE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.426512, - 46.130601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41922, - 46.1225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43013, - 46.1272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42649, - 46.1252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41621, - 46.1332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41621, - 46.1332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42649, - 46.1252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41922, - 46.1225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43013, - 46.1272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vichy2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42184, - 46.1217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VICHY3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9377, - 46.7277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lurcylevis", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60412, - 46.3478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montluconat", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60975, - 46.3396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montlucongi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3335, - 46.571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsvi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3335, - 46.571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsvi", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08009, - 46.1985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ntjbdngwvua", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40917, - 46.1171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "source", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08009, - 46.1985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ntjbdngwvua", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33517, - 46.5676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinspr", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.33517, - 46.5676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinspr", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43213, - 46.4653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "neuillylereal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.61675, - 46.3457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRQEES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40602, - 46.1215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "mairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4438, - 46.0992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "abrest", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12541, - 46.4799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "noyantmarche", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36633, - 46.4392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "bessay", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3274, - 46.5668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsjm", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58477, - 46.3787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R13ICZC6D5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58477, - 46.3787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R13ICZC6D5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43331, - 46.2018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintgerfos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40917, - 46.1171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "source", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40602, - 46.1215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "mairie", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51176, - 46.2593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintgerandlp", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61178, - 46.2463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lapalisseve", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29217, - 46.3067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintpourcain", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.29217, - 46.3067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintpourcain", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.396184, - 46.127122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "aqualudique", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36124, - 46.5062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "centreroutier", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1959, - 46.10168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JCAUYPEAYA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58477, - 46.3787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintvictorla", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58477, - 46.3787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintvictorla", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.61178, - 46.2463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lapalisseve", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43213, - 46.4653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "neuillylereal", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83132, - 46.474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MFMJGR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36124, - 46.5062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "centreroutier", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69498, - 46.7056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PING60TSNE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.83132, - 46.474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MFMJGR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96782, - 46.3251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKPTAV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96782, - 46.3251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKPTAV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69498, - 46.7056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PING60TSNE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.12541, - 46.4799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "noyantmarche", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3389, - 46.5633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsre", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60412, - 46.3478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "montluconat", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1982, - 46.1023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "gannat", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81824, - 46.6173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cerilly", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.66512, - 46.07 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lemayet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15781, - 46.2407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "chantelle", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.79649, - 46.3502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "donjon", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42969, - 46.1548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "creuzierlev", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1982, - 46.1023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "gannat", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59224, - 46.3816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "jaligny", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08854, - 46.1169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ebreuil", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55099, - 46.6098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "chevagnes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08854, - 46.1169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ebreuil", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43955, - 46.1385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cussetgilbert", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64484, - 46.2505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lapalissepa", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42969, - 46.1548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "creuzierlev", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.59224, - 46.3816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "jaligny", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45461, - 46.1344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cussetcent", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.45461, - 46.1344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cussetcent", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.15781, - 46.2407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "chantelle", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31194, - 46.1086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cognatlyonne", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3274, - 46.5668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsjm", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19333, - 46.5335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "souvignymou", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46515, - 46.0671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintyorbv", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46515, - 46.0671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintyorbv", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43331, - 46.2018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintgerfos", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3389, - 46.5633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsre", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19333, - 46.5335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "souvignymou", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60819, - 46.5343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vallonullym", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.60819, - 46.5343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "vallonullym", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4438, - 46.0992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "abrest", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31194, - 46.1086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "cognatlyonne", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.51176, - 46.2593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "saintgerandlp", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30928, - 46.5868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "avermes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.30928, - 46.5868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "avermes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.32884, - 46.5618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "moulinsroche", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64484, - 46.2505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "lapalissepa", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.79649, - 46.3502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "donjon", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.55099, - 46.6098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "chevagnes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38994, - 44.4063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QPPN534ID0", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12818, - 44.4053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VPMUW1NPUD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.140972, - 44.358895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HLIQFU7MBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35146, - 44.808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UJHUNV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3136, - 45.34064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRY0Q66XR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54074, - 45.15616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L4NKVCKURV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03682, - 45.20158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WVFSVWVVI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23258, - 45.24424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CSC0TUMVZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90828, - 45.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVQEXFHYMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84579, - 45.33199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PPSSYUNFPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69669, - 45.31652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EDRVAH0JV8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8506602, - 45.33388671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L4TPSNGBZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.71035, - 45.19631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C68QZRW5IK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90733, - 45.12107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYTKDNTXGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29389, - 45.16762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KKT7GPURKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.27371, - 45.30199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNZBOX38KS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89164, - 45.04276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GFHM4A7HUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.94333, - 44.99135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UVZMY6BLLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.43568, - 45.1428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FHJTIMLKOG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87728, - 45.04768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELNZBQTZOX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31931, - 45.40492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QQ4AFDK4RT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96790901, - 45.0379469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RH3HDEMXJD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.91745792, - 44.99766512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EAWOEQP1NJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12381, - 45.14355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RBTJQRBXH5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549119, - 44.959245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YFU3HJXG3L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48785, - 44.86069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FA9HZSEBKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.902205, - 45.060964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GRUGMK6YCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.38137544, - 45.29758934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BBB8GR3JG1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09876, - 45.257872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HQJOCGGRNM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.902205, - 45.060964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GRUGMK6YCJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.38137544, - 45.29758934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BBB8GR3JG1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.549119, - 44.959245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YFU3HJXG3L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06222, - 45.03316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NQ6WNF6GJD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09876, - 45.257872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HQJOCGGRNM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06222, - 45.03316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NQ6WNF6GJD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883293, - 45.031025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "COEZJEA3UI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883293, - 45.031025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "COEZJEA3UI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.881278, - 45.049778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LCSCVQIEWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.881278, - 45.049778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LCSCVQIEWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.91745792, - 44.99766512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EAWOEQP1NJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12381, - 45.14355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RBTJQRBXH5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.579153, - 44.726121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZH6GCTOHJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.579153, - 44.726121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZH6GCTOHJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.97075, - 44.8031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KAKUUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.418393, - 44.539131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SY0KHPYENM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.632694, - 44.7145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YMML6GJU6C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392542, - 44.62086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUHOEZSQEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.382688, - 44.599646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZHXKZIMNZM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.341696, - 44.597907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HM8S9VMJ8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06294, - 44.8161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CXQHLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06294, - 44.8161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CXQHLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.397295, - 44.626255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GHRMESD8H2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.24175, - 44.479972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YOTTUNSLP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392542, - 44.62086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUHOEZSQEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.255207, - 44.482199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IGOBQMLJPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23633, - 44.393373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UELO0XXIY8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.835527, - 45.0643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O3TC1Q6PSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.61752, - 45.151355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BD2JDOGVLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.66594299, - 45.166995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NEKQQUXFMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00661, - 44.7284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TGGQTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58457, - 44.8214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AVVJGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.662959, - 44.706977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLQ1UX3WUN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.397295, - 44.626255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GHRMESD8H2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10358, - 44.7779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPCKYR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.382688, - 44.599646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZHXKZIMNZM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10358, - 44.7779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPCKYR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.97075, - 44.8031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KAKUUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42219, - 44.9065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SAURCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42219, - 44.9065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SAURCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6887, - 44.484416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UIM5AFHJMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.418393, - 44.539131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SY0KHPYENM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.445178, - 44.652523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RKLKJ18RNS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.341696, - 44.597907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HM8S9VMJ8N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58457, - 44.8214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AVVJGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07317, - 44.5323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MSHPUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22643, - 44.7905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AWVBDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386888, - 44.620794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRKKQCRF0B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387469, - 44.619624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L2PVKCY1TX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07317, - 44.5323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MSHPUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625431, - 44.438699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BPQKMWBSOI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.629389, - 44.503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BWIXDHWDKU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76284, - 45.07478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HMCSUP77H7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34412, - 45.21375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ED9WZC9LMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.17263, - 45.31767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AJT1WFBIB4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90733, - 45.12107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYTKDNTXGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.386839, - 45.294012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PXZORUFFWG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.886055, - 45.040595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQK82BCMDT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.849828, - 44.894145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MHLFDHWBOA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.386839, - 45.294012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PXZORUFFWG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.122835, - 45.144505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SKIDXQPPDJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.886055, - 45.040595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQK82BCMDT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87728, - 45.04768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELNZBQTZOX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8506602, - 45.33388671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L4TPSNGBZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.849828, - 44.894145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MHLFDHWBOA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29221, - 45.11508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UINJVNH6Q6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.90828, - 45.18615 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVQEXFHYMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3136, - 45.34064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRY0Q66XR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.31931, - 45.40492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QQ4AFDK4RT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.54074, - 45.15616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L4NKVCKURV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69669, - 45.31652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EDRVAH0JV8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84579, - 45.33199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PPSSYUNFPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.122835, - 45.144505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SKIDXQPPDJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.744417, - 44.556301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VGOBDGLPKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.71035, - 45.19631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C68QZRW5IK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.994846, - 45.322879 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LK4IORN6OX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.063022, - 44.332828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HHI7NXS2BU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.929752, - 44.950546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICYZM13ZT9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.127572, - 44.357458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PTMJY7PQFA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.367919, - 44.75614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HLDZRB6LRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.751107, - 44.561668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HT6OIBP1HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.756491, - 44.556028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQCHFMZVJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.747654, - 44.549544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URHEE05T5G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.041824, - 45.29267 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WTKHQRLVGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.190152, - 44.23775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IOEFVEOSYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.954134, - 45.291376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XEAAPBSHGL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.993811, - 45.290854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KMY7EK3TVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.372968, - 44.751122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BIAIJUVWY6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.274113, - 44.273155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S2X4SQRIWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.277503, - 44.277843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VPY490SRSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9333, - 44.5448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z4C1VGM0DH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.401908, - 44.712392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LOGXNLQR1V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23258, - 45.24424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CSC0TUMVZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.94333, - 44.99135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UVZMY6BLLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92956, - 45.0469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EMWSK7UUY4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11404, - 45.30546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WRN07GJM7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.387615, - 45.291636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GB6G3PUH3V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8785064, - 45.0295307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BV4HG5JPFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883702, - 44.7698789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZDR9Q4PKYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883702, - 44.7698789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZDR9Q4PKYJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.631, - 45.093055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNMZFMYOCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.631, - 45.093055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNMZFMYOCR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8785064, - 45.0295307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BV4HG5JPFC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.85666, - 45.06895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MTR64UDKFK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.81171, - 45.13562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GXLFC4JZQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05984, - 45.09719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N0APSWIASX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17089, - 45.2951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDWQT9CAE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.43568, - 45.1428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FHJTIMLKOG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03682, - 45.20158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WVFSVWVVI6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29389, - 45.16762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KKT7GPURKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.15323, - 44.90396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJ3MKVO5IB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.30415, - 45.06124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MYQBUNOQVJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96790901, - 45.0379469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RH3HDEMXJD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.20076, - 45.37026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YEA0UXRKNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89164, - 45.04276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GFHM4A7HUU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11404, - 45.30546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WRN07GJM7H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.85666, - 45.06895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MTR64UDKFK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34412, - 45.21375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ED9WZC9LMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76284, - 45.07478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HMCSUP77H7", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17089, - 45.2951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDWQT9CAE8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.15323, - 44.90396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJ3MKVO5IB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.05984, - 45.09719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N0APSWIASX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.48785, - 44.86069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FA9HZSEBKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.20076, - 45.37026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YEA0UXRKNY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.387615, - 45.291636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GB6G3PUH3V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.81171, - 45.13562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GXLFC4JZQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.30415, - 45.06124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MYQBUNOQVJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.92956, - 45.0469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EMWSK7UUY4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.17263, - 45.31767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AJT1WFBIB4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.27371, - 45.30199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNZBOX38KS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.515296, - 45.206547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "A6GGB1AQMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.515296, - 45.206547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "A6GGB1AQMP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35146, - 44.808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UJHUNV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2569, - 44.6352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WRWQNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96914, - 44.6071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GWLPHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2569, - 44.6352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WRWQNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.366008, - 44.345122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DVX2BDOT0V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83965, - 44.94409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LHNDJZAIFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.41797, - 44.447861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R3FECEWLZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399957, - 44.351686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LRP071S55P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.445178, - 44.652523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RKLKJ18RNS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386888, - 44.620794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRKKQCRF0B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36312, - 44.563802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G03APSS9V1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501929, - 44.558368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDPQ78VIEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.451231, - 44.555261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UEVBPQ8MI8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856624, - 44.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EAMPVLYEPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.674702, - 45.244738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BTR9WYDZA8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.291861, - 44.538528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UTZ2KU4Z0Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.670735, - 45.241713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AQKP45UGO1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.574741, - 44.720654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CHQCBVH6YS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.598438, - 44.734181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YMTDSVDIJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.325842, - 44.537509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CTXCZNNDNM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.342456, - 44.453956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B0LKPLIYGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.413857, - 44.31816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R4UYHEAYOG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39753, - 44.406231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KBJBS33OUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.534039, - 45.119859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQRRNQ3NVI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.254712, - 44.298979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PR9GFHI1ZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39753, - 44.406231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KBJBS33OUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.623651, - 44.735891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EYZ3RALMSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.59005, - 44.734135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TE9XLMEDEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.598804, - 44.736443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K59SHDHWTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39753, - 44.406231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KBJBS33OUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387469, - 44.619624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L2PVKCY1TX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.613528, - 44.30425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GMGOBJACDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.155203, - 44.366488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BDBS1JFEDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.883509, - 44.935071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CCH5F8VIHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.201782, - 44.373635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BBW5E0H7F7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70591, - 45.257324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DXM6EBUDLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765732, - 44.941794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ECO0VKGSLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870804, - 44.932387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UGOFN7UN37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.365731, - 44.665798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KGWFWAHGAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.553613, - 45.202235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RGOY0O3953", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.358827, - 44.719448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P8F2SQ4CDB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848103, - 44.960719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R3ZND15N5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343681, - 44.424621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZIQGK2O3XP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.307057, - 44.447701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IAYB6RCTET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.704728, - 44.588025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OHIKRIFSOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95545, - 44.6512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWZQNS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.95545, - 44.6512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWZQNS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18949, - 44.8092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GFZEQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.255207, - 44.482199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IGOBQMLJPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.24175, - 44.479972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YOTTUNSLP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.695439, - 45.066154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RL5NBTAUSM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625376, - 45.085456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AT2IKRY1YG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39372, - 45.0099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANJXNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625431, - 44.438699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BPQKMWBSOI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39372, - 45.0099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANJXNT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.682286, - 44.550008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JNCQWIKSDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23633, - 44.393373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UELO0XXIY8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685681, - 44.552929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MGABJYHNMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.27483, - 44.8673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKGPFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.96914, - 44.6071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GWLPHY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18949, - 44.8092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GFZEQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.597261, - 44.553365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V8Z6ZGXG2M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.835527, - 45.0643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O3TC1Q6PSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.299883, - 44.426088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M5CD2VVGLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72489514, - 44.60970725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XDQPVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71452, - 45.2187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "STY1D71XSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.831528, - 45.038472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Q1XKQPXDSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798643, - 45.239897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JXWL9CLYQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.27483, - 44.8673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKGPFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815346, - 45.083486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRGYSKJMI9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7268, - 45.286166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GCVCJP15M7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799815, - 45.187721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "THXUW7AKVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80108, - 45.271138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VFVIHSTRMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.48872, - 44.8149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RCWJYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765453, - 44.657171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URUMP2J3YM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.66594299, - 45.166995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NEKQQUXFMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6887, - 44.484416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UIM5AFHJMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.215867, - 44.463088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZB114AMUO7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.61752, - 45.151355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BD2JDOGVLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.629389, - 44.503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BWIXDHWDKU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.48872, - 44.8149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RCWJYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.568563, - 44.301353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZNYOVG5Q1H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.643774, - 44.371477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JHNMPLBVVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.534159, - 44.366203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B7F7XR3ZNB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.831528, - 45.038472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Q1XKQPXDSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71452, - 45.2187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "STY1D71XSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64776, - 44.8977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EBHUSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765732, - 44.941794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ECO0VKGSLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70591, - 45.257324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DXM6EBUDLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.597261, - 44.553365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V8Z6ZGXG2M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829734, - 44.856094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRH2IYQPC5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781453, - 44.799609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WHEP9NLKD4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.815346, - 45.083486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRGYSKJMI9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.870804, - 44.932387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UGOFN7UN37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781453, - 44.799609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WHEP9NLKD4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.638471, - 45.188983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EL284IFGMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.638471, - 45.188983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EL284IFGMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.829734, - 44.856094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MRH2IYQPC5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12942, - 44.5878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PYBWJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.12942, - 44.5878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PYBWJB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72489514, - 44.60970725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XDQPVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.155203, - 44.366488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BDBS1JFEDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.201782, - 44.373635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BBW5E0H7F7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7268, - 45.286166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GCVCJP15M7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89792, - 44.7303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QZWCVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.215867, - 44.463088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZB114AMUO7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.267563, - 44.681074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G9WTPPZMMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.632694, - 44.7145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YMML6GJU6C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.89792, - 44.7303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QZWCVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.00661, - 44.7284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TGGQTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.267563, - 44.681074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G9WTPPZMMX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.662959, - 44.706977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLQ1UX3WUN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.695439, - 45.066154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RL5NBTAUSM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.254712, - 44.298979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PR9GFHI1ZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.704728, - 44.588025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OHIKRIFSOE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64776, - 44.8977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EBHUSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.625376, - 45.085456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AT2IKRY1YG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2218, - 44.6758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CTFQBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.682286, - 44.550008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JNCQWIKSDA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.685681, - 44.552929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MGABJYHNMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2218, - 44.6758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CTFQBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799815, - 45.187721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "THXUW7AKVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798643, - 45.239897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JXWL9CLYQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.20786, - 44.711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K4HHCPMLJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.574741, - 44.720654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CHQCBVH6YS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.568563, - 44.301353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZNYOVG5Q1H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.643774, - 44.371477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JHNMPLBVVS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.534039, - 45.119859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQRRNQ3NVI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.883509, - 44.935071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CCH5F8VIHB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.365731, - 44.665798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KGWFWAHGAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.358827, - 44.719448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P8F2SQ4CDB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.598438, - 44.734181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YMTDSVDIJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.674702, - 45.244738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BTR9WYDZA8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.613528, - 44.30425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GMGOBJACDW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.670735, - 45.241713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AQKP45UGO1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.598804, - 44.736443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K59SHDHWTV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.534159, - 44.366203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B7F7XR3ZNB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.59005, - 44.734135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TE9XLMEDEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.623651, - 44.735891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EYZ3RALMSG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22643, - 44.7905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AWVBDU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.20786, - 44.711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K4HHCPMLJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.553613, - 45.202235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RGOY0O3953", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.291861, - 44.538528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UTZ2KU4Z0Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765453, - 44.657171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URUMP2J3YM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343681, - 44.424621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZIQGK2O3XP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.80108, - 45.271138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VFVIHSTRMO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.848103, - 44.960719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R3ZND15N5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.342456, - 44.453956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B0LKPLIYGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83965, - 44.94409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LHNDJZAIFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856624, - 44.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EAMPVLYEPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.307057, - 44.447701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IAYB6RCTET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.325842, - 44.537509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CTXCZNNDNM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.299883, - 44.426088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M5CD2VVGLM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39753, - 44.406231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KBJBS33OUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501929, - 44.558368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDPQ78VIEG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399957, - 44.351686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LRP071S55P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36312, - 44.563802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G03APSS9V1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.451231, - 44.555261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UEVBPQ8MI8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.366008, - 44.345122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DVX2BDOT0V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.41797, - 44.447861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R3FECEWLZD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.413857, - 44.31816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R4UYHEAYOG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.097078, - 45.990188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BVGPUCVDDT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073676, - 46.142809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CVEVFLDAHI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057257, - 46.0384893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I87DFGGXNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.981366, - 43.139698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XJM25YBBQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01814, - 43.108139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJ3XL6XZTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910646, - 43.142256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYRCFTINHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.842399, - 43.093511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UYWWVLHDHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01814, - 43.108139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJ3XL6XZTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113377, - 43.120276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CXZL1VHZBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131286, - 43.038647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "U20PVEFMDS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910646, - 43.142256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYRCFTINHR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113377, - 43.120276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CXZL1VHZBY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.148806, - 43.047876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P9AXQ55PSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.914784, - 43.130261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WV16QKJAOY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.914784, - 43.130261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WV16QKJAOY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.083604, - 43.088313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S0BKBAHJZ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.083604, - 43.088313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S0BKBAHJZ9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22004267, - 43.6266837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBGJDBSHVN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22004267, - 43.6266837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBGJDBSHVN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.077222, - 43.094876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I7JXCEB90K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.077222, - 43.094876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I7JXCEB90K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.131286, - 43.038647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "U20PVEFMDS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109689, - 43.12475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YP50UQ5XFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.109689, - 43.12475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YP50UQ5XFT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.153966, - 43.030095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XKCZXBQX77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.025026, - 43.092978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FOP0RMBHQO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.153966, - 43.030095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XKCZXBQX77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.855232, - 43.107958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X9ACD664IX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175952, - 43.348508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DR8DDD8O45", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.036826, - 43.191242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "U309RLZWQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.855232, - 43.107958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X9ACD664IX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.867203, - 43.124073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XYQVQRLNOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175952, - 43.348508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DR8DDD8O45", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125505, - 43.10854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RAV5DFEAEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.867203, - 43.124073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XYQVQRLNOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.982913, - 43.128743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SXRR7LO13E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.543831, - 43.766333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YHQFQ5KDAE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.543831, - 43.766333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YHQFQ5KDAE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.140912, - 43.118344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDLITAUEPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.140912, - 43.118344 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDLITAUEPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125505, - 43.10854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RAV5DFEAEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175739, - 43.106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PZ5XASX8DE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.000823, - 43.134444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CKNLCKILQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.806694, - 43.080991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CZTN3RDEN3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.208756, - 43.77316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NFH22CALUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.936084, - 43.115201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PXQQOQYXV2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.28863, - 43.3194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYICHSALWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.018776, - 43.084552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GTTHOQUJRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13862, - 43.286628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JN2BNPZTJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.800506, - 43.07487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VCBKGKDJE4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078095, - 43.120548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IWC3A33G30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13862, - 43.286628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JN2BNPZTJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92812, - 43.16388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BGYAN4GZ5U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88241, - 43.103103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AEJY2YM4XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.800506, - 43.07487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VCBKGKDJE4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.208756, - 43.77316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NFH22CALUW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.078095, - 43.120548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IWC3A33G30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.137923, - 43.111634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EXSLDWIYGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149858, - 43.064793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LKPXJJN0R7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97218364, - 43.12926791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UTIMKUAQVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97218364, - 43.12926791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KHJBBVINUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9238871, - 43.13027018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W7NM5NBTSY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94080194, - 43.1194873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EJWEGJHZDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.148806, - 43.047876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P9AXQ55PSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.070709, - 43.147958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GRL0MUCLX8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.000823, - 43.134444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CKNLCKILQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.945638, - 43.107935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANLPJGMNN8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175739, - 43.106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PZ5XASX8DE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.806694, - 43.080991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CZTN3RDEN3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.945638, - 43.107935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANLPJGMNN8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8125, - 43.099783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TBCQ7Z5SIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.149858, - 43.064793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LKPXJJN0R7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92812, - 43.16388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BGYAN4GZ5U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.28863, - 43.3194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYICHSALWP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.137923, - 43.111634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EXSLDWIYGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9238871, - 43.13027018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W7NM5NBTSY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.936084, - 43.115201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PXQQOQYXV2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.075492, - 43.147169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JRIJGWQ7GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.018776, - 43.084552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GTTHOQUJRW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97218364, - 43.12926791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UTIMKUAQVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88241, - 43.103103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AEJY2YM4XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.025026, - 43.092978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FOP0RMBHQO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.927102, - 43.126733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N2JNLUXZTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.927102, - 43.126733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N2JNLUXZTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.316517, - 43.3927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "COBGZQF7KR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.044463, - 43.330293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ODJ3J2PXMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.044463, - 43.330293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y4OFET8FDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.497017, - 43.571181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NT6A1CNH1A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.075095, - 43.23772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YV38XHFQKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073719, - 43.236609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YIOODBQSFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.696857, - 43.624273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "POFMPGHIET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24135, - 43.51516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMXRRATUPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.361105, - 43.490803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLVMFDV1MU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46939, - 43.317779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IXWH7RUKR0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.463953, - 43.208338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I0SJOBBFTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.357913, - 43.314384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BFO8FWAXWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23577, - 43.135207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CEJHEYUHTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.425536, - 43.152094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FU4PDVWWQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.293704, - 43.323544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GEUQ9S0IWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.236833, - 43.139693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WV50SNUOZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.369696, - 43.137889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PT7FIXFEYY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.010334, - 43.120467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SGQBB9ZVMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.137679, - 43.288093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SEODRBQGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.182072, - 43.475585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANUKTTYTG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.229499, - 43.301314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TZ5AN63MMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.736809, - 43.50392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FOR8KTMTNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.784954, - 43.471881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDC6F1GITF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.021739, - 43.107612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LNFOF1DSWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.024325, - 43.106136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NSZLO1DE4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.029939, - 43.553296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "THCWDAWXKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143279, - 43.228023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LEYJ79ZALK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.847451, - 43.137181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CRK2IWO5NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.144734, - 43.226478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AZ12ROASTI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.610836, - 43.2172196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F0HLVDBZUM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813964, - 43.525115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PLT8JLOXFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75708, - 43.608633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UOGJK0ALBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.382547, - 43.605991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IVXGZYQXI3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.243153, - 43.774849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HCWWXBM9FJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.752095, - 43.606096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SP7TYXQZVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.685957, - 43.45612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TFC7M4PURW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.683481, - 43.453692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZC6L4PI3AM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.074581, - 43.148347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CNVK97OWH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.342794, - 43.390503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MGSHTS9WRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150598, - 43.083425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HJBBCTOFEI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.082015, - 43.336062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FGFFNEVI2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.841899, - 43.117565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BB50GHGEOM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.840185, - 43.111404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GIQRFGC9J6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.840185, - 43.111404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GIQRFGC9J6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.84677031, - 43.11675785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RJYQTZVSYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.082015, - 43.336062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FGFFNEVI2C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.090382, - 43.303283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GAMO0PZWOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.982913, - 43.128743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SXRR7LO13E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.813819, - 43.109906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PHPFZI11NQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.848177, - 43.116827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X64XQRUOP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.84677031, - 43.11675785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RJYQTZVSYG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.090382, - 43.303283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GAMO0PZWOK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.813819, - 43.109906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PHPFZI11NQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.036826, - 43.191242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "U309RLZWQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125679, - 43.119765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N0JCAPMP2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125679, - 43.119765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N0JCAPMP2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150598, - 43.083425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HJBBCTOFEI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.841899, - 43.117565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BB50GHGEOM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.848177, - 43.116827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X64XQRUOP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.074425, - 43.092958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R1VOSOO7GO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.302705, - 43.237316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQSYJSG0TH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.185457, - 43.300398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UEZAJDDHKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.535475, - 43.590682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZQRMJ7J2UI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073943, - 43.408111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DXBHRKZYBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.064265, - 43.404268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W1WQZAA03D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.754467, - 43.197869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PK3XN6HDHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.222372, - 43.427744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MDNBIGKUXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50678, - 43.710943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OOG3SU0SRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072607, - 43.150988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D9FNLZRTGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85204, - 43.105236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WQRUVP5GZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150075, - 43.524758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IRNE7AOJCY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30944049, - 43.23924335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NUTXBIS2GQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.771902, - 43.176461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CPRBTI1JCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.069992, - 43.096204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HKHTSQZA2H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.450228, - 43.597875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SZIFDMFRBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.039215, - 43.39442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B5WUOR3QQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.85204, - 43.105236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WQRUVP5GZT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.981366, - 43.139698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XJM25YBBQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.070709, - 43.147958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GRL0MUCLX8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.556539, - 44.790737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EULNXGGME8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.075492, - 43.147169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JRIJGWQ7GS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.891595, - 44.688716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OTIJNYI4G7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.278045, - 44.543139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZOZRCQYIPI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.40560759, - 45.0356367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P0A4HH2T9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.510674, - 44.97595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DAT3HIUUJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.197639, - 44.565323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EK3YFXDJPI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.498394, - 44.824989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HQNBNX4FTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.826448, - 44.313627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMNKKM8CKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.856609, - 44.231125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L1ZVU3VTKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.490031, - 44.844086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XVHD82BG9X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204541, - 44.62348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MMNYV6SKZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169101, - 44.64284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DJZ3SGBTQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.231873, - 44.668239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WGGW16XY2X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.499543, - 44.564163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZJOOX1CSEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22918, - 44.4649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LBOH42YD32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.326756, - 44.695058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TGYAPJC0IY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.498638, - 44.562874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GLYX8EKDXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5574, - 44.4952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZZAOSWZCD5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.928601, - 44.675988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GDURFISRRH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.277534, - 44.547316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KYMNEXEV9U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632719, - 44.622584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M3TYYDTBPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580031, - 44.750171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWDDIHOIZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.718155, - 44.428729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OZQAXE8API", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.694359, - 44.312791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AVPMF7FPWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65137, - 44.657303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RH93NMVN5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.865808, - 44.699294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "T00CHAS1VP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58674, - 44.933873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W5UAOHAP6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84759393, - 44.71980038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FFCIXLY2AX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.865808, - 44.699294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "T00CHAS1VP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.812786, - 44.272603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BPVCF4NFWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.649073, - 44.661324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRJCSRLME5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.824664, - 44.315547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R0FHUDC6EV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89593426, - 44.29475516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LMYDZA6WOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.649073, - 44.661324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRJCSRLME5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.649073, - 44.661324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRJCSRLME5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.498394, - 44.824989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HQNBNX4FTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632719, - 44.622584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M3TYYDTBPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.649073, - 44.661324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRJCSRLME5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.481829, - 44.551008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BVSE9OOBFL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.492683, - 44.562232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EOEVKW231A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.471063, - 44.389375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DCO2FHPJTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.689987, - 44.594376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CSEKWHVUFM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.718155, - 44.428729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OZQAXE8API", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.694359, - 44.312791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AVPMF7FPWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.65137, - 44.657303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RH93NMVN5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.613159, - 44.415394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HD9NVGOEYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58674, - 44.933873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W5UAOHAP6F", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.193801, - 44.81712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UIV8WSGZS3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.027689, - 44.780812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MF3IZD0TYS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.075528, - 44.683441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XWOZOZWQ4X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.510674, - 44.97595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DAT3HIUUJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.077297, - 44.682134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C3RYGMDUOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.680047, - 44.571774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EBFZ5AXIPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580566, - 44.649808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFSNGXZAQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632719, - 44.622584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M3TYYDTBPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624609, - 44.670518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LWVJGTCWAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.721293, - 44.868338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UHJOVHVZUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.672902, - 44.914662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HQX9SNP7JC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.752325, - 44.521057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WS9GEQKX4X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.197639, - 44.565323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EK3YFXDJPI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.72954, - 44.488113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TOIG5O9FBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.277534, - 44.547316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KYMNEXEV9U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.701949, - 44.619558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4KF4WCINB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.826448, - 44.313627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMNKKM8CKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.325711, - 44.684191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WJ8Z1KJHM8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.403827, - 44.527699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RZUDP5ZC6L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.361567, - 44.575991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUSMB1T2DL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.891595, - 44.688716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OTIJNYI4G7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.928601, - 44.675988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GDURFISRRH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.204541, - 44.62348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MMNYV6SKZ1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.278045, - 44.543139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZOZRCQYIPI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.490031, - 44.844086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XVHD82BG9X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.231873, - 44.668239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WGGW16XY2X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.169101, - 44.64284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DJZ3SGBTQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60619239, - 44.5461648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JZZFBPHZN0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.496613, - 44.567371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YRHKYUWSPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5529, - 44.4852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G7IIRTHTVV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.40560759, - 45.0356367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P0A4HH2T9K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580566, - 44.649808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFSNGXZAQM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.680047, - 44.571774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EBFZ5AXIPG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624609, - 44.670518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LWVJGTCWAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.987543, - 43.128168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X1WVLS09JB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.952856, - 43.123039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O6NF58E9RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.987543, - 43.128168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X1WVLS09JB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88738, - 43.12855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D321K1JB15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92022, - 43.130271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SASKL5PCVO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.836931, - 43.091682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LUID3LXHYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.88738, - 43.12855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D321K1JB15", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.836931, - 43.091682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LUID3LXHYD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732183, - 44.933961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QQSNCTNJVW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926017, - 43.123831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WWTYSYKPGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.48477, - 44.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FKGQLSRA16", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27106, - 44.5466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CTXZPJCMCY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.48477, - 44.5474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FKGQLSRA16", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01944, - 44.7749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TKYLXPMQQR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02653, - 44.4429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XUHTK332PH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02653, - 44.4429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XUHTK332PH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71816, - 44.4287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XFOSNUYPUI", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.952856, - 43.123039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O6NF58E9RW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902172, - 43.12679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RJ5MVDIEP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27106, - 44.5466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CTXZPJCMCY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0766, - 43.087644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MJ8NETPBNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94080194, - 43.1194873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EJWEGJHZDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.031743, - 43.141124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WUNGLWZ1YC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.534731, - 43.49274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMDPXMBHFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.534731, - 43.49274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OMDPXMBHFV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.010815, - 43.12151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S7OZUOKYDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.010815, - 43.12151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S7OZUOKYDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.031743, - 43.141124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WUNGLWZ1YC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8125, - 43.099783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TBCQ7Z5SIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902172, - 43.12679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RJ5MVDIEP8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.842399, - 43.093511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UYWWVLHDHN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97218364, - 43.12926791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KHJBBVINUJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0766, - 43.087644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MJ8NETPBNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8226, - 43.100631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KCS9CBB3AU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8226, - 43.100631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KCS9CBB3AU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.92022, - 43.130271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SASKL5PCVO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926017, - 43.123831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WWTYSYKPGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.71816, - 44.4287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XFOSNUYPUI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03355, - 44.4554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EUPMCU29Y2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632719, - 44.622584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "M3TYYDTBPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8223, - 44.7616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OTB2ORHCSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.827471, - 44.535099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O3D66ZVWF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.075528, - 44.683441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XWOZOZWQ4X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.077297, - 44.682134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C3RYGMDUOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.689987, - 44.594376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CSEKWHVUFM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729531, - 44.93391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LEI5CBWBVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729531, - 44.93391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LEI5CBWBVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84759393, - 44.71980038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FFCIXLY2AX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.738928, - 44.767371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AXODXBUCIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732183, - 44.933961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IQFRXFB9FK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.193801, - 44.81712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UIV8WSGZS3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.027689, - 44.780812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MF3IZD0TYS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.613159, - 44.415394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HD9NVGOEYE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.738928, - 44.767371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AXODXBUCIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.869095, - 44.781915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TUNFILFNT4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.827471, - 44.535099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O3D66ZVWF8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8223, - 44.7616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OTB2ORHCSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.869095, - 44.781915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TUNFILFNT4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732183, - 44.933961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IQFRXFB9FK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03355, - 44.4554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EUPMCU29Y2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30074, - 45.0443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWGH4CNZPB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56418479, - 44.94441185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XEESI7SAZY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30074, - 45.0443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWGH4CNZPB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01944, - 44.7749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TKYLXPMQQR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6159, - 44.6747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E1RHXEXDBN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6159, - 44.6747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E1RHXEXDBN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.827471, - 44.535099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQM28MJSWG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.827471, - 44.535099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MQM28MJSWG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072981, - 44.674562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z0LIYARX3I", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732183, - 44.933961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IQFRXFB9FK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56418479, - 44.94441185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XEESI7SAZY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55886, - 44.7927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N85SEO7ECP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55886, - 44.7927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N85SEO7ECP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.82656289, - 44.31360432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JJAKCW9HAW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072981, - 44.674562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z0LIYARX3I", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.82656289, - 44.31360432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JJAKCW9HAW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732183, - 44.933961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IQFRXFB9FK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.225247, - 43.626467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KYGXBCOEUN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3387671, - 43.143838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPD3JQ3SQ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.344754, - 43.150558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C8ZGQHEU5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.000198, - 43.246609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLHJJJF5Z0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.805145, - 43.075105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QIJDB1KGQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86157, - 43.288929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y7IPA7UM6O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.862383, - 43.29057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DB729VJMID", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.811745, - 43.112475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZKDZF8SDVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03984, - 43.191311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HIMXOVAKJ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.040289, - 43.191434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LDEIEAYDSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.426889, - 43.453845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DMH0PBAXCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.027701, - 43.207992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y2MRQRX4PV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.925816, - 43.12512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EKWN2NN56Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.304044, - 43.450901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RRK1AVPNIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.938863, - 43.126242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NRPAT4JCYN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910463, - 43.128749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMRPTILWO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.006072, - 43.196785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FYHUB1BIZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89433, - 43.080577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LTG8ORIAX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.884482, - 43.101577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UQL1ORKDTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.801015, - 43.120048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MR9BSJWNMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.806379, - 43.117049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V7ICDQ3LVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.811991, - 43.09991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DKBK3IZL5E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.644595, - 43.501255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XXGOJ7R8NU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708931, - 43.181444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HBB3TYFJFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.960407, - 43.597668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y8NFJOVNCO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03717, - 43.142403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GL4ERZHDOT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.927429, - 43.075068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GM4SFCKU5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.907343, - 43.071083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L2KTMFZATR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708931, - 43.181444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWPPNAD8K0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.935913, - 43.636472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TXLNRF6IDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9177624, - 43.4124305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NVJ5E3O6YT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.889052, - 43.128623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TMRZGC2FOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.442335, - 43.760432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F2310LROW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691177, - 43.342474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KLMBE6LVV9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636401, - 43.444287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NX7Q0NZIA4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851185, - 43.393343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CQMQZFLODZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125282, - 43.340772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F2WBIZMGSY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.627985, - 43.723321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DFTEM0U8ZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976662, - 43.33822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JBGVKCN6U7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.704812, - 43.185573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XQHA8RY3C0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.634532, - 43.442627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VCES3C1APO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.960407, - 43.597668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y8NFJOVNCO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.442335, - 43.760432 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F2310LROW6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.361105, - 43.490803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLVMFDV1MU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.040289, - 43.191434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LDEIEAYDSL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.694532, - 43.166973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S1UPSAI2WA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.801015, - 43.120048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MR9BSJWNMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233225, - 43.562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X2OY3JOEPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.027701, - 43.207992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y2MRQRX4PV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.006072, - 43.196785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FYHUB1BIZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.304044, - 43.450901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RRK1AVPNIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.426889, - 43.453845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DMH0PBAXCF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.805145, - 43.075105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QIJDB1KGQD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.806379, - 43.117049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V7ICDQ3LVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.811991, - 43.09991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DKBK3IZL5E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03984, - 43.191311 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HIMXOVAKJ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.811745, - 43.112475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZKDZF8SDVA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233225, - 43.562878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X2OY3JOEPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.932443, - 43.130591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NGQP8ETIBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.93622, - 43.127107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OCMVHL5UIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.932108, - 43.11232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPBFYEH6AZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.858855, - 43.452337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BJDBRGOTJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86157, - 43.288929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y7IPA7UM6O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23577, - 43.135207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CEJHEYUHTK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.013545, - 43.308971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YJEH1BQMHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9177624, - 43.4124305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NVJ5E3O6YT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.910463, - 43.128749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMRPTILWO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.925816, - 43.12512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EKWN2NN56Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.889052, - 43.128623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TMRZGC2FOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.938863, - 43.126242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NRPAT4JCYN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.785255, - 43.371555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QGDY5JC7JJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.566681, - 43.470632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K0VTCHYACN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.012054, - 43.311571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUTIVJGR3W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.862383, - 43.29057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DB729VJMID", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.121209, - 43.473247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MSA4LEJVKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.357913, - 43.314384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BFO8FWAXWY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.316517, - 43.3927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "COBGZQF7KR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.765235, - 43.617906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FJYNYUSSSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.463953, - 43.208338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I0SJOBBFTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.884482, - 43.101577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UQL1ORKDTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89433, - 43.080577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LTG8ORIAX4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03717, - 43.142403 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GL4ERZHDOT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21490165, - 44.08017094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZYL6ZBTURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9435, - 44.195232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LJK2HESSRK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.78992, - 46.23258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EJFSUCSX8H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929132, - 43.120398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LW8YIBIVNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14181, - 43.103655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z2GMZTGMKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14181, - 43.103655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z2GMZTGMKG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.751882, - 43.133481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GUF6TXRR70", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929132, - 43.120398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LW8YIBIVNR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12474, - 45.91174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYGTRRTRSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12474, - 45.91174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYGTRRTRSD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.78992, - 46.23258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EJFSUCSX8H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.900207, - 43.091725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BTEM7L8NXD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9321824, - 46.10196059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YEEBQJBWE2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616385, - 45.857483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R7WVTFXTZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.333852, - 46.316175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YO5QCAKPXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616385, - 45.857483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R7WVTFXTZQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.333852, - 46.316175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YO5QCAKPXE", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9321824, - 46.10196059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YEEBQJBWE2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.417705, - 45.340454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JBWSNH5CN2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.900207, - 43.091725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BTEM7L8NXD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.153919, - 43.079788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E13WCUMQM3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0650575, - 45.60489804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TJPZS8BPH4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.948059, - 43.125866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K2DBFDWT9W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0729027, - 46.03897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EZSU5AL3I5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.751882, - 43.133481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GUF6TXRR70", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.907031, - 43.137815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IHTEVI4L40", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.948059, - 43.125866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K2DBFDWT9W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.907031, - 43.137815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IHTEVI4L40", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.153966, - 43.030095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XKCZXBQX77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.153966, - 43.030095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XKCZXBQX77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.877614, - 43.117208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RDX2AWT3HH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.934264, - 43.112478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YADWXN16SX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.975751, - 43.12525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HSL9TJXH2X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.975751, - 43.12525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HSL9TJXH2X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.811146, - 43.091278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLI8VB03EYSCL2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.811146, - 43.091278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLI8VB03EYSCL2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.877614, - 43.117208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RDX2AWT3HH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.153919, - 43.079788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E13WCUMQM3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.934264, - 43.112478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YADWXN16SX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.417705, - 45.340454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JBWSNH5CN2", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0650575, - 45.60489804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TJPZS8BPH4", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9435, - 44.195232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LJK2HESSRK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17285285, - 45.29281583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IBSXDFRIST", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74897911, - 44.55730613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N9XQ3KEFL9", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74897911, - 44.55730613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N9XQ3KEFL9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88973581, - 44.92944338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BR33QVBXDK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13972955, - 44.35821959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLIIIO2L613NJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.13972955, - 44.35821959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLIIIO2L613NJN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.385347, - 45.290997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ER0AUMJDGU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.17285285, - 45.29281583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IBSXDFRIST", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.879068, - 45.046877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KRAXKE7RE5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.904066, - 45.672011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLJED8Y6Z1Z0BZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.879068, - 45.046877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KRAXKE7RE5", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.385347, - 45.290997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ER0AUMJDGU", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.231455, - 44.091577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XFCI1JOWWR", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.231455, - 44.091577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XFCI1JOWWR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.222468, - 43.846039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PYIAZJVBWS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.222468, - 43.846039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PYIAZJVBWS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21490165, - 44.08017094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZYL6ZBTURA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88973581, - 44.92944338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BR33QVBXDK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.911434, - 45.689927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLJE3WUMOV8L8F", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035542, - 45.985625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FU2UCSPHOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31861937, - 45.15396959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YZ10HKDMQ8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.357859, - 45.852431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VEVO6DOUKL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.357859, - 45.852431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VEVO6DOUKL", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.035542, - 45.985625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FU2UCSPHOH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23269785, - 45.62297234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NLEDVFEXF7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23269785, - 45.62297234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NLEDVFEXF7", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0676798, - 45.0914135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G0F2IUTCE8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0676798, - 45.0914135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G0F2IUTCE8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31861937, - 45.15396959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YZ10HKDMQ8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.911434, - 45.689927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLJE3WUMOV8L8F", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.27552, - 45.588987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FYDLG22UGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.278273, - 45.584676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZI3F7Q3G9Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.278273, - 45.584676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZI3F7Q3G9Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.27552, - 45.588987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FYDLG22UGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.631899, - 45.598443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ORFDPC1FUM", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.904066, - 45.672011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLJED8Y6Z1Z0BZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.631899, - 45.598443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ORFDPC1FUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.932108, - 43.11232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPBFYEH6AZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233294, - 43.562956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K9AZWC5W94", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993895, - 43.131758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZG0YWPL16J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.074581, - 43.148347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CNVK97OWH1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.029939, - 43.553296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "THCWDAWXKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.024325, - 43.106136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NSZLO1DE4B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.736809, - 43.50392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FOR8KTMTNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.075095, - 43.23772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YV38XHFQKK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073719, - 43.236609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YIOODBQSFH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.696857, - 43.624273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "POFMPGHIET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.24135, - 43.51516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMXRRATUPO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50678, - 43.710943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OOG3SU0SRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.021739, - 43.107612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LNFOF1DSWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.302705, - 43.237316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQSYJSG0TH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072607, - 43.150988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D9FNLZRTGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.150075, - 43.524758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IRNE7AOJCY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.425536, - 43.152094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FU4PDVWWQ4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.293704, - 43.323544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GEUQ9S0IWD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.236833, - 43.139693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WV50SNUOZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.369696, - 43.137889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PT7FIXFEYY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.784954, - 43.471881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDC6F1GITF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.137679, - 43.288093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SEODRBQGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.010334, - 43.120467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SGQBB9ZVMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.229499, - 43.301314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TZ5AN63MMZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.176766, - 43.732476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GLCUE976K9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.625908, - 43.738191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GUJSPIPZNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.803608, - 43.196687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OUTJB3CMSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.806335, - 43.195169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O38JYKRTRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.752095, - 43.606096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SP7TYXQZVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.143279, - 43.228023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LEYJ79ZALK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.847451, - 43.137181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CRK2IWO5NY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.144734, - 43.226478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AZ12ROASTI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.610836, - 43.2172196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F0HLVDBZUM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.013545, - 43.308971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YJEH1BQMHQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.566681, - 43.470632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K0VTCHYACN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.121209, - 43.473247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MSA4LEJVKS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.012054, - 43.311571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUTIVJGR3W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.785255, - 43.371555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QGDY5JC7JJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.685957, - 43.45612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TFC7M4PURW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.683481, - 43.453692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZC6L4PI3AM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.044463, - 43.330293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ODJ3J2PXMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.497017, - 43.571181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NT6A1CNH1A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3387671, - 43.143838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPD3JQ3SQ3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.699922, - 43.536283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KT2CJWMHHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.765235, - 43.617906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FJYNYUSSSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.806335, - 43.195169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O38JYKRTRO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.176766, - 43.732476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GLCUE976K9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.798958, - 43.195848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G3IUATQPKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.803608, - 43.196687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OUTJB3CMSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.625908, - 43.738191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GUJSPIPZNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698561, - 43.536849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PNZOLN3KQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.571085, - 43.729968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJ9LI4EFUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.185457, - 43.300398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UEZAJDDHKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.753034, - 43.134693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GTJYVLLJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066481, - 43.407623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H3MZXPKIZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.062531, - 43.403983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W5R7IXTOXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.061688, - 43.407248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VFR4L4ZIYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.058906, - 43.406661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LVC3YKSO2H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.518632, - 43.782955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SBGEQE8DZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3619, - 43.12415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ULSFSOW4Z1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.182072, - 43.475585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANUKTTYTG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.535475, - 43.590682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZQRMJ7J2UI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.044463, - 43.330293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y4OFET8FDN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.062531, - 43.403983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W5R7IXTOXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46939, - 43.317779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IXWH7RUKR0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30944049, - 43.23924335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NUTXBIS2GQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073943, - 43.408111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DXBHRKZYBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.064265, - 43.404268 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W1WQZAA03D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.754467, - 43.197869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PK3XN6HDHL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.222372, - 43.427744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MDNBIGKUXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.061688, - 43.407248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VFR4L4ZIYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.518632, - 43.782955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SBGEQE8DZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.342794, - 43.390503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MGSHTS9WRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.058906, - 43.406661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LVC3YKSO2H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.066481, - 43.407623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H3MZXPKIZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.771902, - 43.176461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CPRBTI1JCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.069992, - 43.096204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HKHTSQZA2H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.450228, - 43.597875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SZIFDMFRBK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.039215, - 43.39442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B5WUOR3QQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.074425, - 43.092958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R1VOSOO7GO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.798958, - 43.195848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G3IUATQPKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.344754, - 43.150558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C8ZGQHEU5W", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.898863, - 43.078878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMX5QJAPON", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072311, - 43.439098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHUBJ7QBC6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0406, - 43.1488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y4UAJNWN4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0406, - 43.1488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y4UAJNWN4K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.016902, - 43.124845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VAJMYZYNQ8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.482466, - 43.610596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PS4X9OLB4Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1298, - 43.1062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NX8FKWS8GN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0778, - 43.1476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HXKNZ664DA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.233294, - 43.562956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K9AZWC5W94", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.932443, - 43.130591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NGQP8ETIBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0778, - 43.1476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HXKNZ664DA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.93622, - 43.127107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OCMVHL5UIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691177, - 43.342474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KLMBE6LVV9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636401, - 43.444287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NX7Q0NZIA4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.644595, - 43.501255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XXGOJ7R8NU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.634532, - 43.442627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VCES3C1APO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.907343, - 43.071083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L2KTMFZATR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133562, - 43.116603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AFJ2JVZ4L1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1298, - 43.1062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NX8FKWS8GN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.016902, - 43.124845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VAJMYZYNQ8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.927429, - 43.075068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GM4SFCKU5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.983741, - 43.137653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XAIFX7NXUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.072311, - 43.439098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHUBJ7QBC6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.827597, - 43.109013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SEEISRFNFD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.943407, - 43.1085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C4DAJBRGSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97480134, - 43.12893153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R4CFXQWYOD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.952178, - 43.107303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PBVWLY88ID", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.943407, - 43.1085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "C4DAJBRGSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.97480134, - 43.12893153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R4CFXQWYOD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.983741, - 43.137653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XAIFX7NXUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.482466, - 43.610596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PS4X9OLB4Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.895401, - 43.143787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QP7TLLYXNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.895401, - 43.143787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QP7TLLYXNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926085, - 43.177244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QUIK8EU3EI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.898863, - 43.078878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMX5QJAPON", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.926085, - 43.177244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QUIK8EU3EI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.827597, - 43.109013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SEEISRFNFD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.993895, - 43.131758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZG0YWPL16J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133562, - 43.116603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AFJ2JVZ4L1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.935913, - 43.636472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TXLNRF6IDO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.000198, - 43.246609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLHJJJF5Z0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.699922, - 43.536283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KT2CJWMHHT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238485, - 43.13889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FBD13FK4ZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238485, - 43.13889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CKECHE1YMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06957006, - 43.12051391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G9AWPT4DAO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06957006, - 43.12051391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G9AWPT4DAO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08065, - 43.48513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LQAM9T3B0V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08065, - 43.48513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LQAM9T3B0V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698561, - 43.536849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PNZOLN3KQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.571085, - 43.729968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GJ9LI4EFUY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238485, - 43.13889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CKECHE1YMR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.753034, - 43.134693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GTJYVLLJFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.225247, - 43.626467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KYGXBCOEUN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813964, - 43.525115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PLT8JLOXFE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75708, - 43.608633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UOGJK0ALBQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.382547, - 43.605991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IVXGZYQXI3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.243153, - 43.774849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HCWWXBM9FJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3619, - 43.12415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ULSFSOW4Z1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.028701, - 43.107001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PT6DOEVM5R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.238485, - 43.13889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FBD13FK4ZJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708931, - 43.181444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWPPNAD8K0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.851185, - 43.393343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CQMQZFLODZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708931, - 43.181444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HBB3TYFJFW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.858855, - 43.452337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BJDBRGOTJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.694532, - 43.166973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "S1UPSAI2WA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.704812, - 43.185573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XQHA8RY3C0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.627985, - 43.723321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DFTEM0U8ZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976662, - 43.33822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JBGVKCN6U7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.125282, - 43.340772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F2WBIZMGSY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.028701, - 43.107001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PT6DOEVM5R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9324, - 43.1306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICPTZYI5F3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.201184, - 43.116488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "COWVZWVFO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.201184, - 43.116488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "COWVZWVFO0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86434221, - 43.45548248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D9SCVVZETK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.86434221, - 43.45548248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "D9SCVVZETK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0387, - 43.1469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QMYSD12SXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9324, - 43.1306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICPTZYI5F3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0387, - 43.1469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QMYSD12SXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.725729527, - 44.93142339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RXIEJHAHQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.952178, - 43.107303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PBVWLY88ID", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0547, - 44.4604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISMVMVMPVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.31678503, - 45.42282428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IWGHRPVBV0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06467, - 46.04125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BNAVO3VFDJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.059, - 46.0325625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TPZYRFBBHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06467, - 46.04125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BNAVO3VFDJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.346184, - 46.165401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QXCNNGKKJJ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.071406, - 46.033345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PSEA6GJAN3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.071406, - 46.033345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PSEA6GJAN3", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22777, - 45.74238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I94BQIRYL6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22777, - 45.74238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I94BQIRYL6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07645891, - 46.0379016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IF1PCDZCRZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07645891, - 46.0379016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IF1PCDZCRZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21674, - 45.52367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URKGXP7KLK", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21674, - 45.52367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URKGXP7KLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.346184, - 46.165401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QXCNNGKKJJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.27747, - 45.5613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GBTTMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.27747, - 45.5613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GBTTMB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9147214, - 46.06752154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YJUCBYQK33", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.930498, - 46.122926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JY0TJDEVXN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.083534, - 45.918435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y9EHBF4TKH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94768024, - 45.86309439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SAYQDHUGKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13133, - 45.90478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NHJ0BBAIUH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.639805, - 46.025563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QG1JJTOKPN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.619913, - 45.863904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B23XI8EXVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.083534, - 45.918435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Y9EHBF4TKH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.406002, - 46.077103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V4BCPZSKGF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.621296, - 45.860103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WCBMBTLQJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.369798, - 46.266546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K6RA94IPIY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.369798, - 46.266546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "K6RA94IPIY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14202, - 45.91962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZFNYXIEBSQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14202, - 45.91962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZFNYXIEBSQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0583, - 46.0247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NYCFYH0OAI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.943568, - 46.189248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VMYGOPNGKC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3342453, - 45.4473008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YIDXSFUUSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18384, - 45.81856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDZL8RTBFG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.263238, - 45.396748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGMDE60VKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3217772, - 45.4331486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P1JCQZGYPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2564165, - 45.4467313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKUKVCUG0Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2630078, - 45.5076733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WUFELBWHT7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9147214, - 46.06752154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YJUCBYQK33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.930498, - 46.122926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JY0TJDEVXN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.943568, - 46.189248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VMYGOPNGKC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18384, - 45.81856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDZL8RTBFG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2511196, - 45.4093142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QOX8DO7S4R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0583, - 46.0247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NYCFYH0OAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09246, - 46.02658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XBYO74ENAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.896588, - 46.102351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GW5Q7UNATT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.062721, - 46.086751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RD0UYEY3MU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.042694, - 46.03628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z4Q0ZTBFD9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.123665, - 46.037983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NSEE0ZJGLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.336845, - 45.444849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MCBGYNNUEB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1807817, - 45.4033238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "U4AQ0K8DKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3225519, - 45.4243932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVYQDEGDC3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.082572, - 45.607143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OGZVDJ7RLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.123665, - 46.037983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NSEE0ZJGLH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.941872, - 45.389256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H88YLRP16P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0607641, - 45.6073765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LZFEFO7KSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.177878, - 45.887058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SHKDVBCA4O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2160722, - 45.989587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTIYLP7TN0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.376203, - 45.35628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JOLS2OGPGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3948511, - 45.2825753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YLSVBYAJM1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1677001, - 45.4980481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KODGS1EZY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.042694, - 46.03628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z4Q0ZTBFD9", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1742548, - 46.1581686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICY3X7IVQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3721251, - 45.4856699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HFWXM4PJLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0714987, - 45.596007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ATU4HTPHF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.062721, - 46.086751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RD0UYEY3MU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.316785035, - 45.42282428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IWGHRPVBV0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.337093, - 45.4352175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBT65NAW0K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4946901, - 45.2692689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QOFKA776QB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2404883, - 45.5004988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WCGRDIRD61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13133, - 45.90478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NHJ0BBAIUH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867324, - 45.924709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FB0EBACBBU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.424995, - 45.906059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GCKM4BEY1K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.619782, - 45.863918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B23XI8EXVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09082, - 45.9141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UFGBSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073676, - 46.142809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CVEVFLDAHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8643, - 46.0609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYATAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8643, - 46.0609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JYATAX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.190705, - 45.950926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YWRSAWNEVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22051, - 45.7762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NLZTSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.619782, - 45.863918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B23XI8EXVR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22051, - 45.7762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NLZTSF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12351, - 45.9356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QMLUTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.164, - 45.97767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BH9RGRYWWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1387291, - 45.9450798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R8PQPHRS5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.190705, - 45.950926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YWRSAWNEVT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.202025, - 45.827454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MX2GSCSOQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.54229116, - 46.08405685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHK0LKAJ25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.646246, - 45.93089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RPQUB69LKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3533415, - 46.1632497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHQUXFGSJ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09082, - 45.9141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UFGBSW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10387, - 45.9076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANTREV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1334, - 45.9036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRGFEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.106581, - 45.907333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TDVAAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16885, - 45.9328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVHEQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1334, - 45.9036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FRGFEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12208, - 45.8991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SXTKJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12208, - 45.8991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SXTKJJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14695, - 45.905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NQTNQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14695, - 45.905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NQTNQA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31168, - 46.0665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JUNKKQX4CA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091, - 45.9208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HFWNFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10162, - 45.888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LVCNJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10162, - 45.888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LVCNJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.48578, - 46.0536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SWI9PR0KMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.48578, - 46.0536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SWI9PR0KMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31168, - 46.0665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JUNKKQX4CA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12351, - 45.9356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QMLUTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.091, - 45.9208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HFWNFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84055, - 46.25796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISP5MCPLRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.54229116, - 46.08405685 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHK0LKAJ25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.26369449, - 46.117427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GYLUWGEFDI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27012, - 46.13779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDZRSUX6PK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2688, - 46.13461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R4SOF6UFOS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.164, - 45.97767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BH9RGRYWWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1387291, - 45.9450798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R8PQPHRS5Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03918, - 45.9612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AWWZZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.202025, - 45.827454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MX2GSCSOQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.646246, - 45.93089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RPQUB69LKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09711, - 45.88625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OPXMALLCMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3533415, - 46.1632497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHQUXFGSJ0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03261, - 45.9713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLBHRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1362, - 45.8924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SYQDJU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1362, - 45.8924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SYQDJU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03261, - 45.9713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LLBHRC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.03918, - 45.9612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AWWZZB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84055, - 46.25796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISP5MCPLRA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5491808, - 46.0568649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B92IX0BMR1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50848, - 46.08869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YRUUXFJYTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09085, - 45.9378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PHVETX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10531, - 45.9397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FGJRNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10531, - 45.9397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FGJRNL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09085, - 45.9378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PHVETX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50392, - 46.09152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SMNREJQJRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.54797, - 46.0643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHSSXX0WPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.54797, - 46.0643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DHSSXX0WPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1013174, - 46.0946733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GM910S6PBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57371, - 46.39752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWS0KPAQIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57371, - 46.39752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWS0KPAQIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57371, - 46.39752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWS0KPAQIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57371, - 46.39752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HWS0KPAQIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4946901, - 45.2692689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QOFKA776QB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.337093, - 45.4352175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DBT65NAW0K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10387, - 45.9076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ANTREV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2630078, - 45.5076733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WUFELBWHT7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.234739, - 46.032035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TUTD30X35M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.048321, - 46.070421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FGWMD2UBVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.076384, - 46.045465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QFSWJ7JX52", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.079701, - 46.036818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVQSHO7N5L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.071512, - 46.045819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "URQIIQNRHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0664465, - 46.0285599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HFHFSNPFL8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0631344, - 46.0376702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WIBXDEW7O1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0747703, - 46.0414962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FZYNI4UPQP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06897568, - 46.07763561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JMKUVVPZI3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87573188, - 46.17604575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PXOA6DYBFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.925942, - 46.051708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GZW7760W41", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.072804, - 46.036429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZANUNBEQ2X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0672642, - 46.0330277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KMKK2WXJUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.931463, - 46.031274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PYFXTRHNOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0964775, - 46.0296215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AU1YWRKLWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085646, - 46.029813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SA4FXRNXKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9309, - 46.052042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MPFTAS9LHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.234739, - 46.032035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TUTD30X35M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.048321, - 46.070421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FGWMD2UBVQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069028, - 46.047472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BMT481UC66", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22096, - 45.7446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WZBCXJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39409, - 45.6384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTQZMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39409, - 45.6384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTQZMT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.446987, - 45.4098072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W26C6ONSBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3640911, - 45.4050209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RMGF2XIQG6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3666899, - 45.402132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GFBM3TN5RY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0045021, - 45.7456111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLQXF6NKY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5162605, - 45.4165342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O54IWFIUPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4370403, - 45.4878958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISUMHUQAQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069028, - 46.047472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BMT481UC66", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.56981, - 45.5055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BRUPTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58146, - 45.5135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NTEXHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58146, - 45.5135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NTEXHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.43933, - 45.5482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VLJGRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22096, - 45.7446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WZBCXJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.43933, - 45.5482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VLJGRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.56981, - 45.5055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BRUPTZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.052708, - 46.046313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YZD20EWHZI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.082342, - 46.042776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FJCDHNVFJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.002576, - 46.051967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NLVCDQEOPZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.002576, - 46.051967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NLVCDQEOPZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9309, - 46.052042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MPFTAS9LHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87573188, - 46.17604575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PXOA6DYBFU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0350391, - 46.0434068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YU5FX9XNFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.072804, - 46.036429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZANUNBEQ2X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03728, - 45.996498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RQVKOP24BA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0535, - 46.034167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FSMDLX2G3U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0503929, - 46.0302958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YMXK9OQBKU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0408092, - 46.0282332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KUPUVRMJH2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.079701, - 46.036818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVQSHO7N5L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08037845, - 46.05971964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NA1INBYCYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.067559, - 46.036543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HZVBOQT3RZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.085646, - 46.029813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SA4FXRNXKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.086384, - 46.080367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HOQDKHZSAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.060917, - 45.999397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZKXXATFPZL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0964775, - 46.0296215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AU1YWRKLWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.034507, - 44.458795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPBNINMYNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.076384, - 46.045465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QFSWJ7JX52", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.082342, - 46.042776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FJCDHNVFJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.067559, - 46.036543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HZVBOQT3RZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0728184, - 46.0344539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "E1O6R0CI23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0535, - 46.034167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FSMDLX2G3U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0408092, - 46.0282332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KUPUVRMJH2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0350391, - 46.0434068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YU5FX9XNFJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08037845, - 46.05971964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NA1INBYCYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.03728, - 45.996498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RQVKOP24BA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0503929, - 46.0302958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YMXK9OQBKU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.059, - 46.0325625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TPZYRFBBHS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.086384, - 46.080367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HOQDKHZSAT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.052708, - 46.046313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YZD20EWHZI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0729027, - 46.03897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EZSU5AL3I5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08614, - 46.025338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "J8KQANINTN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057257, - 46.0384893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "I87DFGGXNC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.060917, - 45.999397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZKXXATFPZL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.097078, - 45.990188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BVGPUCVDDT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.925942, - 46.051708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GZW7760W41", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.931463, - 46.031274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PYFXTRHNOV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.273447, - 45.759568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ROOMZVXRSO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4499632, - 45.4877239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OAUEVKIP5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4352, - 45.48154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JR9TTMXTJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.208527, - 45.9483507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TCHFTRZXQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2812527, - 45.3958253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SBLMXOFNGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4257236, - 45.4753254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OL7HMZRXTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3367866, - 45.7928662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MHD5MKUFAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.064615, - 45.424436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VXH5EOTKP9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.336845, - 45.444849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MCBGYNNUEB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3342453, - 45.4473008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YIDXSFUUSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5414507, - 45.5229189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVMNOOPOGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3141025, - 45.5019921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LDBAM0UVXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3721251, - 45.4856699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HFWXM4PJLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.266084, - 45.389132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QHL8YCFSIR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3524202, - 45.466474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYO5JSDPCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.353032, - 45.467506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RZTN1YKWP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.184682, - 45.538959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KWASMIIC7L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4257236, - 45.4753254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OL7HMZRXTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3367866, - 45.7928662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MHD5MKUFAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.064615, - 45.424436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VXH5EOTKP9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.941872, - 45.389256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H88YLRP16P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.177878, - 45.887058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SHKDVBCA4O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4499632, - 45.4877239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OAUEVKIP5N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2564165, - 45.4467313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKUKVCUG0Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2404883, - 45.5004988 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WCGRDIRD61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1742548, - 46.1581686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ICY3X7IVQQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.263238, - 45.396748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGMDE60VKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2511196, - 45.4093142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QOX8DO7S4R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1807817, - 45.4033238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "U4AQ0K8DKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3225519, - 45.4243932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVYQDEGDC3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3217772, - 45.4331486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P1JCQZGYPW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2160722, - 45.989587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HTIYLP7TN0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0714987, - 45.596007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ATU4HTPHF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0607641, - 45.6073765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LZFEFO7KSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.082572, - 45.607143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OGZVDJ7RLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1677001, - 45.4980481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KODGS1EZY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.376203, - 45.35628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JOLS2OGPGU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3948511, - 45.2825753 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YLSVBYAJM1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.896588, - 46.102351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GW5Q7UNATT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09246, - 46.02658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XBYO74ENAK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4370403, - 45.4878958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISUMHUQAQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5414507, - 45.5229189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RVMNOOPOGM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4352, - 45.48154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JR9TTMXTJ7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0045021, - 45.7456111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WLQXF6NKY2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64742, - 45.4794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AAVBTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64742, - 45.4794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AAVBTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3666899, - 45.402132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GFBM3TN5RY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.446987, - 45.4098072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W26C6ONSBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5695, - 45.50397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EC5TK1JROM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5695, - 45.50397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EC5TK1JROM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5162605, - 45.4165342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O54IWFIUPP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.273447, - 45.759568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ROOMZVXRSO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.31657, - 45.5921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDCPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3640911, - 45.4050209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RMGF2XIQG6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53528, - 45.5561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HJJFHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53528, - 45.5561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HJJFHK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57513, - 45.4842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MWSKGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.57513, - 45.4842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MWSKGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.54026293, - 45.48570475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QLRDN5VITJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.54026293, - 45.48570475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QLRDN5VITJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.31657, - 45.5921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UDCPRA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.25891, - 45.6466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GMFXMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.208527, - 45.9483507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TCHFTRZXQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37529, - 45.5323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HRSSFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3141025, - 45.5019921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LDBAM0UVXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.266084, - 45.389132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QHL8YCFSIR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3524202, - 45.466474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OYO5JSDPCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.353032, - 45.467506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RZTN1YKWP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.184682, - 45.538959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KWASMIIC7L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2812527, - 45.3958253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SBLMXOFNGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37529, - 45.5323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HRSSFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58589, - 45.5341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EYECWW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.25891, - 45.6466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GMFXMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58589, - 45.5341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EYECWW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58422, - 45.5495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CKVEGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.58422, - 45.5495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CKVEGB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5950883, - 45.5447567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XVKVTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5950883, - 45.5447567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XVKVTT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.48614, - 45.5451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QQTZQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.48614, - 45.5451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QQTZQG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.106581, - 45.907333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TDVAAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DGXASAH8ZE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16885, - 45.9328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PVHEQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8690192, - 45.9239269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVTXA1HEAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70555, - 46.18337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HSN542X2AO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56682, - 45.83576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JPJU8RHNGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.417302, - 46.0782491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QH0TXLZWSV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.32796, - 46.298313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RZHD8TNRZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3746593, - 46.3324048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MFG307V2NS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39608, - 46.00143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFMAS0BOXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25827, - 46.26919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELVWIEUKPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1047065, - 46.1204422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRK2TIBPMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0813288, - 46.1446775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWBZ2DL8DD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7128251, - 45.8878674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BAVXN00NQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0797251, - 46.1411537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TYMBBVGUX0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61474, - 45.85996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F0XWONZVIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1377729, - 46.1421246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GA7MONBEKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70555, - 46.18337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HSN542X2AO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70249, - 46.18177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EGAHT5NLC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720604, - 45.9279808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LFIWEBSSVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.727681, - 45.820233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EJXYMI6XHO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62106, - 45.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQSBKCRGOP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.727681, - 45.820233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EJXYMI6XHO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0797251, - 46.1411537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TYMBBVGUX0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.425, - 45.9061111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GXDZ8OG6HC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49167, - 46.06668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YENI22PAXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42785, - 46.35486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFIHFF2BIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46464, - 46.33661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ABQ4SHJDQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.61474, - 45.85996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "F0XWONZVIN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52257, - 46.33715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SBBFTCPVCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22112, - 45.90633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VWTMPYFVOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3705, - 45.8595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CPJSS61PNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56682, - 45.83576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JPJU8RHNGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1377729, - 46.1421246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GA7MONBEKP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3031717, - 46.3072182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EFUC1KB7A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.26788, - 46.32539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DAWE5R7RWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.32492, - 46.36786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WKHYWYQLE4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3581754, - 46.3459998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NZUZDQ7AS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1047065, - 46.1204422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DRK2TIBPMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0813288, - 46.1446775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWBZ2DL8DD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7128251, - 45.8878674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BAVXN00NQZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09858, - 45.904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MPHPDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.32492, - 46.36786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WKHYWYQLE4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3746593, - 46.3324048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MFG307V2NS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31765, - 46.19112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PIDK70DETG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7054898, - 45.9084331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BOHPZMIGRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52257, - 46.33715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SBBFTCPVCD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2501381, - 46.1957504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SFUJIVKVOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2418001, - 46.1872704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JT2OHSXSCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22112, - 45.90633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VWTMPYFVOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.46464, - 46.33661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ABQ4SHJDQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.425, - 45.9061111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GXDZ8OG6HC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.32021, - 46.16807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WO2U9NU6WH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.42785, - 46.35486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFIHFF2BIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.139655, - 45.940159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O21GQVZ2FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10641, - 46.03216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JV1D6ZX6CS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720684, - 46.28074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHGFCGFP0Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2911397, - 46.1845626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DQETGFDKRS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8750103, - 45.9258487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EWBWX8MWV7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867244, - 45.9169475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V03V6B3GVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8723734, - 45.9217431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDZUASRU2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2431239, - 46.1977983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DR9TBERC11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2500572, - 46.2012424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZUDHFC7WPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3581754, - 46.3459998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NZUZDQ7AS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5414348, - 46.076664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RJVJ8NDBBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.26788, - 46.32539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DAWE5R7RWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3031717, - 46.3072182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EFUC1KB7A5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.417302, - 46.0782491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QH0TXLZWSV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62106, - 45.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FQSBKCRGOP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.39608, - 46.00143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PFMAS0BOXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.32796, - 46.298313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RZHD8TNRZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25827, - 46.26919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ELVWIEUKPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63658, - 46.03355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PIPMPI1GSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5813048, - 46.0610345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PLHDMFICPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5621063, - 46.0691081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HHXSOERCYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.234031, - 46.1917492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GTJY9D5ZAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.49167, - 46.06668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YENI22PAXC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720604, - 45.9279808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LFIWEBSSVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7054898, - 45.9084331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BOHPZMIGRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3705, - 45.8595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CPJSS61PNE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68976, - 46.00658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CAU4LIXEUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2500572, - 46.2012424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZUDHFC7WPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2501381, - 46.1957504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SFUJIVKVOR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.70249, - 46.18177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EGAHT5NLC0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.556539, - 44.790737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EULNXGGME8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.721293, - 44.868338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UHJOVHVZUL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.725729527, - 44.93142339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RXIEJHAHQH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0103, - 44.5359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CVTZIA5YAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.607755, - 45.019741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EYJPJJQYRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0547, - 44.4604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ISMVMVMPVP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.752325, - 44.521057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WS9GEQKX4X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.034507, - 44.458795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPBNINMYNO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0564, - 44.4629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GS486H2R3J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.701949, - 44.619558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P4KF4WCINB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.481829, - 44.551008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BVSE9OOBFL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.60619239, - 44.5461648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JZZFBPHZN0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.400384, - 44.524718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KYWI522MXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.326756, - 44.695058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TGYAPJC0IY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5574, - 44.4952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZZAOSWZCD5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5529, - 44.4852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "G7IIRTHTVV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.496613, - 44.567371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YRHKYUWSPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.672902, - 44.914662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HQX9SNP7JC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22918, - 44.4649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LBOH42YD32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94401, - 46.0163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WOVHVSVADV", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.856609, - 44.231125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "L1ZVU3VTKA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0564, - 44.4629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GS486H2R3J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.824664, - 44.315547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R0FHUDC6EV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.89593426, - 44.29475516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LMYDZA6WOH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.580031, - 44.750171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWDDIHOIZF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.812786, - 44.272603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BPVCF4NFWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.607755, - 45.019741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EYJPJJQYRV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0103, - 44.5359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CVTZIA5YAA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.361567, - 44.575991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUSMB1T2DL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.325711, - 44.684191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WJ8Z1KJHM8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.403827, - 44.527699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RZUDP5ZC6L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.400384, - 44.524718 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KYWI522MXW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.72954, - 44.488113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TOIG5O9FBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.471063, - 44.389375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DCO2FHPJTD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.498638, - 44.562874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GLYX8EKDXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.492683, - 44.562232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EOEVKW231A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.499543, - 44.564163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZJOOX1CSEU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13118, - 45.89654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TSAVE2OGXW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22944, - 46.1801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OWMMX48HPN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2431239, - 46.1977983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DR9TBERC11", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11126, - 45.8969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AJCWTT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86026, - 45.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PTHUPUSXPM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.323481, - 45.883111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YQIQWQ8UZY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69832, - 45.9169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MHBJLZGXHM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94401, - 46.0163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WOVHVSVADV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0055, - 45.8148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WYDNKDUR6N", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31337, - 46.2263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H0ZSKAREWB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3274777, - 45.88239121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YQIQWQ8UZY", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.403103, - 46.207255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KSXIXLLCSP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27037, - 45.7562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHTXXUOXPG", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.403103, - 46.207255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KSXIXLLCSP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3274777, - 45.88239121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YQIQWQ8UZY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11126, - 45.8969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AJCWTT", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.234031, - 46.1917492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GTJY9D5ZAF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59052, - 46.1058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WVOTTGZPHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6859975, - 45.9230095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DQYFSLZJSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2418001, - 46.1872704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JT2OHSXSCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59334, - 46.0498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RYHFTY2PT7", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27037, - 45.7562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHTXXUOXPG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52835, - 46.3958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SNOMOK8MEQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13118, - 45.89654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TSAVE2OGXW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52835, - 46.3958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SNOMOK8MEQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69832, - 45.9169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MHBJLZGXHM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V1G6TQKEFF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59628696, - 46.40028687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MCO5MCQGLW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22944, - 46.1801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OWMMX48HPN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.87171266, - 45.91714084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V1G6TQKEFF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12164055, - 45.90815666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XBYM6MYKUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59628696, - 46.40028687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MCO5MCQGLW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59334, - 46.0498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RYHFTY2PT7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12164055, - 45.90815666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XBYM6MYKUM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1557, - 45.9451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPPCXP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1557, - 45.9451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NPPCXP", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31337, - 46.2263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H0ZSKAREWB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0055, - 45.8148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WYDNKDUR6N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.323481, - 45.883111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YQIQWQ8UZY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.86026, - 45.9015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PTHUPUSXPM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.840009, - 46.267741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z1ILFORWGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6859975, - 45.9230095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DQYFSLZJSI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25063, - 45.99859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Q5DM2CCSDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.591829, - 46.144208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LNG7XIKQU2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115, - 45.8996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YGKQEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115, - 45.8996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YGKQEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19782, - 45.8616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HRCEDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.591829, - 46.144208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LNG7XIKQU2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.774007, - 46.053531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GULDWSUOJM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.473147, - 46.24829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKO8NQUJ3G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.473147, - 46.24829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BKO8NQUJ3G", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.621296, - 45.860103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WCBMBTLQJ7", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1293, - 45.9124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNFNVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.639805, - 46.025563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QG1JJTOKPN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94768024, - 45.86309439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SAYQDHUGKA", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.774007, - 46.053531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GULDWSUOJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.619913, - 45.863904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B23XI8EXVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.424995, - 45.906059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GCKM4BEY1K", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.406002, - 46.077103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V4BCPZSKGF", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05437, - 45.7866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MXJSYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12962, - 45.9026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DTJZZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12307, - 45.8956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TTWQMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29294, - 45.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MMDHJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16349, - 45.9263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JKHUKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16349, - 45.9263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JKHUKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12307, - 45.8956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "TTWQMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13666, - 45.9078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BMGNQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1202, - 45.9157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BGWGWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1202, - 45.9157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BGWGWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12163, - 45.908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYJMCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12163, - 45.908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YYJMCQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.13666, - 45.9078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BMGNQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.12962, - 45.9026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DTJZZQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.05437, - 45.7866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MXJSYM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.19782, - 45.8616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HRCEDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.11669, - 45.91755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "W3UFAZDOEH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08326, - 45.8626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XGFJVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94101, - 45.8664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KUMQMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17526, - 45.8808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GUDSGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17526, - 45.8808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GUDSGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08326, - 45.8626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XGFJVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09711, - 45.88625 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "OPXMALLCMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21571, - 45.8393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DWYWZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21571, - 45.8393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DWYWZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30372, - 46.0682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z77EKJ57Z0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30504, - 46.0719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HUTGNTAFVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37743, - 46.0731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NWHQAZN2YT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37743, - 46.0731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NWHQAZN2YT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14032, - 45.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FCUKKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.14032, - 45.8646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FCUKKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30372, - 46.0682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z77EKJ57Z0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98003, - 46.0461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WGEEMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09858, - 45.904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MPHPDX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94101, - 45.8664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KUMQMM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.98003, - 46.0461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WGEEMN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.91994, - 46.01908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWQDYD6WZ2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.690794, - 46.00793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X5JIHAHDBL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21297, - 45.791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PBNDNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29294, - 45.7483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "MMDHJY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.690794, - 46.00793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X5JIHAHDBL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.690794, - 46.00793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X5JIHAHDBL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.690794, - 46.00793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X5JIHAHDBL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.431687, - 45.905947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BMFWAN6U8Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.431687, - 45.905947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BMFWAN6U8Y", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16202, - 45.8321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUJCLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06426, - 45.9217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BDZXDF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94833, - 45.8606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XANHLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94833, - 45.8606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XANHLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37506, - 46.0577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X0NHNPY2ZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.37506, - 46.0577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "X0NHNPY2ZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16202, - 45.8321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FUJCLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.30504, - 46.0719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HUTGNTAFVM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06426, - 45.9217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BDZXDF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1293, - 45.9124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "QNFNVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.21297, - 45.791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PBNDNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09222, - 45.9064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LZJLZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50392, - 46.09152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "SMNREJQJRD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4282, - 45.9415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HBM95RMP7A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5311, - 46.05942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FEEL9LIPEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.59052, - 46.1058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WVOTTGZPHU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4056, - 46.2085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YAJEY50I1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6562248, - 46.2319364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ODXLXEZKBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52646, - 46.06035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AG3CUDNG6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58711, - 46.40099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XTOLYUEL6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62745, - 46.37938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZSXXLQQOA8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57812, - 46.39822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H2TVD8QWSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.45734, - 46.1382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YRJ3UX21SF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80141, - 46.39387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RSYEDPHZVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62745, - 46.37938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZSXXLQQOA8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5813048, - 46.0610345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PLHDMFICPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.68976, - 46.00658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CAU4LIXEUR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6210576, - 46.0200208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NF37UCDDPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670556, - 46.16 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LAAMCG1RZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58349, - 46.08865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UGTSBKUGBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.628513, - 45.943044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "J8S4ZSJCGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3712542, - 46.2652955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P5NRXSSCMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27012, - 46.13779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDZRSUX6PK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3712542, - 46.2652955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "P5NRXSSCMV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16856, - 46.00947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N4XGHTVSZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09222, - 45.9064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LZJLZN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96791, - 46.10947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WNCHD87MLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22815, - 46.16281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPWSTXXUWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.633486, - 45.9321314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWYOE0KVEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7979927, - 45.8889078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KDBQHXLRTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.72854, - 46.08306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JJZ5BFGYRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6110727, - 45.9213467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UUKLIN1F3L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.26369449, - 46.117427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GYLUWGEFDI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.628513, - 45.943044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "J8S4ZSJCGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.25063, - 45.99859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Q5DM2CCSDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.91994, - 46.01908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWQDYD6WZ2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16856, - 46.00947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "N4XGHTVSZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.96791, - 46.10947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WNCHD87MLT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22815, - 46.16281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YPWSTXXUWB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.633486, - 45.9321314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CWYOE0KVEJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.63658, - 46.03355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PIPMPI1GSK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6110727, - 45.9213467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UUKLIN1F3L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31765, - 46.19112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "PIDK70DETG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.72854, - 46.08306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JJZ5BFGYRF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5311, - 46.05942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "FEEL9LIPEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58711, - 46.40099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "XTOLYUEL6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.80141, - 46.39387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RSYEDPHZVE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.52646, - 46.06035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "AG3CUDNG6G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.45734, - 46.1382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YRJ3UX21SF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.139655, - 45.940159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "O21GQVZ2FZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.720684, - 46.28074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "VHGFCGFP0Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10641, - 46.03216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JV1D6ZX6CS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.867244, - 45.9169475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "V03V6B3GVC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.32021, - 46.16807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "WO2U9NU6WH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8723734, - 45.9217431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "JDZUASRU2S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8750103, - 45.9258487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "EWBWX8MWV7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8690192, - 45.9239269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ZVTXA1HEAM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.840009, - 46.267741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "Z1ILFORWGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7979927, - 45.8889078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "KDBQHXLRTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2911397, - 46.1845626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "DQETGFDKRS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4056, - 46.2085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YAJEY50I1R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57812, - 46.39822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "H2TVD8QWSA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6210576, - 46.0200208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "NF37UCDDPC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50848, - 46.08869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "YRUUXFJYTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5621063, - 46.0691081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HHXSOERCYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4040479, - 46.1421419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BAQ6RWB5LG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2115413, - 46.1889469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CX2VTC22TK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.670556, - 46.16 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "LAAMCG1RZX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6562248, - 46.2319364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "ODXLXEZKBM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58349, - 46.08865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "UGTSBKUGBT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2097281, - 46.1913894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMKLPMKKZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2115413, - 46.1889469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "CX2VTC22TK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4040479, - 46.1421419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "BAQ6RWB5LG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2097281, - 46.1913894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "IMKLPMKKZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2688, - 46.13461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "R4SOF6UFOS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1013174, - 46.0946733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "GM910S6PBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5491808, - 46.0568649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "B92IX0BMR1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4282, - 45.9415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "HBM95RMP7A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5414348, - 46.076664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPBR1", - "email": "contact@reseau-eborn.fr", - "phone": "33423100350", - "network": "eborn", - "ref": "RJVJ8NDBBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392732, - 45.446148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392732, - 45.446148 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.409465, - 45.422654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383611, - 45.450606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.409465, - 45.422654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383611, - 45.450606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383611, - 45.450606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.339118, - 45.44058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42223AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.339118, - 45.44058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42223AA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.388649, - 45.432013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.339118, - 45.44058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42223AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399325, - 45.440783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399325, - 45.440783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3907915488403, - 45.44346056306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3907915488403, - 45.44346056306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3907915488403, - 45.44346056306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395133, - 45.431483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395133, - 45.431483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.285769, - 45.391243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.384222, - 45.459475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.285769, - 45.391243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3867507, - 45.4476017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.286092, - 45.384258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.286092, - 45.384258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.394564, - 45.433997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.323678, - 45.397069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42044AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.323678, - 45.397069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42044AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3867507, - 45.4476017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5158208, - 45.4782379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AD", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5158208, - 45.4782379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5158208, - 45.4782379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.364239, - 45.479263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.364239, - 45.479263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378651, - 45.463571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378651, - 45.463571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.368072, - 45.454275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.368072, - 45.454275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.620006, - 45.529152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.620006, - 45.529152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.276472, - 45.379078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.276472, - 45.379078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.384222, - 45.459475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526069, - 45.494844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEPS42207AC", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.394564, - 45.433997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390567, - 45.430944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.292167, - 45.523472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.292167, - 45.523472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.292167, - 45.523472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.257074, - 45.525924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.257074, - 45.525924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.272165, - 45.529554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.272165, - 45.529554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.390567, - 45.430944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.389903, - 45.411421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37989, - 45.437243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.389903, - 45.411421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.377888, - 45.467731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.377888, - 45.467731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526069, - 45.494844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEPS42207AC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.526069, - 45.494844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEPS42207AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.613454, - 45.527692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.613454, - 45.527692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.388649, - 45.432013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BD", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37989, - 45.437243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399995, - 45.41816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400734, - 45.442934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.419098, - 45.418845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400734, - 45.442934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.400734, - 45.442934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.264967, - 45.543839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.264967, - 45.543839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42005AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.403326, - 45.426995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.403326, - 45.426995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3801704, - 45.4731837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3801704, - 45.4731837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.419098, - 45.418845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.399995, - 45.41816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387767, - 45.453219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387767, - 45.453219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387767, - 45.453219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39425, - 45.415889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39425, - 45.415889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395436, - 45.423999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BN", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395436, - 45.423999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.395436, - 45.423999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.388649, - 45.432013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.276472, - 45.379078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42095AB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.379868, - 45.43433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.62708, - 45.532354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.403437, - 45.439087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.403437, - 45.439087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38351, - 45.43067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38351, - 45.43067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505162, - 45.467122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505162, - 45.467122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.623377, - 45.53135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.623377, - 45.53135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.373289, - 45.444678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.373289, - 45.444678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38404, - 45.439909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38404, - 45.439909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38404, - 45.439909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391937, - 45.438013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BC", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391937, - 45.438013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391937, - 45.438013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396479, - 45.439454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BJ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396479, - 45.439454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BJ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396479, - 45.439454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401687, - 45.45052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.401687, - 45.45052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.422419, - 45.444738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42237AB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386229, - 45.435811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.379868, - 45.43433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391303, - 45.454669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.391303, - 45.454669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.50956, - 45.477746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.50956, - 45.477746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.368069, - 45.468686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42330AA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.368069, - 45.468686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42330AA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.368069, - 45.468686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42330AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386229, - 45.435811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.422419, - 45.444738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42237AB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.437393, - 45.436396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.437393, - 45.436396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3976364, - 45.4572274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3976364, - 45.4572274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392778, - 45.457303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392778, - 45.457303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392778, - 45.457303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.422419, - 45.444738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42237AB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.62708, - 45.532354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.392778, - 45.457303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.62708, - 45.532354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42186AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386948, - 45.409886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AP", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505508, - 45.477173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.444597, - 45.448767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEPS42237AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.444597, - 45.448767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEPS42237AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387578, - 45.440594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AQ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387578, - 45.440594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AQ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.387578, - 45.440594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386948, - 45.409886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AP", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.386948, - 45.409886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AP", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5039778, - 45.4577757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505508, - 45.477173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AF", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38127, - 45.44757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38127, - 45.44757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378769, - 45.466526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378769, - 45.466526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.382443, - 45.477253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AD", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.382443, - 45.477253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AD", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.382443, - 45.477253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.458179, - 45.457039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42237AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.505508, - 45.477173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5039778, - 45.4577757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.354466, - 45.479853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38966, - 45.43496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.458179, - 45.457039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42237AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.354466, - 45.479853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.413217, - 45.420522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.413217, - 45.420522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.508525, - 45.471086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.417438, - 45.434308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.417438, - 45.434308 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40185, - 45.4405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40185, - 45.4405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.508525, - 45.471086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42207AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38966, - 45.43496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424937, - 45.42304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BH", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424937, - 45.42304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.424937, - 45.42304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218BH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.412619, - 45.455738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.412619, - 45.455738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.354466, - 45.479853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42275AB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.412619, - 45.455738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "owner:ref:FR:SIREN": "848778429", - "email": "contact@e-totem.fr", - "network": "Réseau Saint Étienne Métropole", - "ref": "FRESEP42218AS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057328868811743, - 45.45730543705983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE VALINCHES", - "ref": "FRG10P42140A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0949882021896373, - 46.13314849171384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "ETOTEM Aytré", - "ref": "FRG10P17028A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0949882021896373, - 46.13314849171384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "ETOTEM Aytré", - "ref": "FRG10P17028A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0949882021896373, - 46.13314849171384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "ETOTEM Aytré", - "ref": "FRG10P17028A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2324345613741965, - 46.18080358900933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Eurocommercial Etrembières", - "ref": "FRG10P74118A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1936678661598776, - 50.72310631627842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE LA SAPINIERE", - "ref": "FRG10P62898A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1936678661598776, - 50.72310631627842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "DOMAINE DE LA SAPINIERE", - "ref": "FRG10P62898A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47297326742572, - 48.73450821899008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Cimetière intercommunal de Valenton", - "ref": "FRG10P94074A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87179340147923, - 45.6379472717099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CYTHELIA ENERGY", - "ref": "FRG10P73179A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87179340147923, - 45.6379472717099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CYTHELIA ENERGY", - "ref": "FRG10P73179A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.87179340147923, - 45.6379472717099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CYTHELIA ENERGY", - "ref": "FRG10P73179A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013775, - 49.481695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CLOS DE LA VAUPALIERE", - "ref": "FRG10P76150A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013775, - 49.481695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CLOS DE LA VAUPALIERE", - "ref": "FRG10P76150A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013775, - 49.481695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CLOS DE LA VAUPALIERE", - "ref": "FRG10P76150A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013775, - 49.481695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CLOS DE LA VAUPALIERE", - "ref": "FRG10P76150A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47297326742572, - 48.73450821899008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Cimetière intercommunal de Valenton", - "ref": "FRG10P94074A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.796642, - 48.872293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CERTAS Eurodisney", - "ref": "FRG10P77132A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.796642, - 48.872293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CERTAS Eurodisney", - "ref": "FRG10P77132A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.796642, - 48.872293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CERTAS Eurodisney", - "ref": "FRG10P77132A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2324345613741965, - 46.18080358900933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Eurocommercial Etrembières", - "ref": "FRG10P74118A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.796642, - 48.872293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CERTAS Eurodisney", - "ref": "FRG10P77132A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2324345613741965, - 46.18080358900933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Eurocommercial Etrembières", - "ref": "FRG10P74118A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.379127, - 45.63536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GARAGE DU CENTRE", - "ref": "FRG10P42059A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2324345613741965, - 46.18080358900933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Eurocommercial Etrembières", - "ref": "FRG10P74118A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2324345613741965, - 46.18080358900933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Eurocommercial Etrembières", - "ref": "FRG10P74118A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78804, - 44.13691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Mercure Orange Centre", - "ref": "FRG10P84087A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78804, - 44.13691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Mercure Orange Centre", - "ref": "FRG10P84087A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1729627219668368, - 48.34361336413087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Ibis Style Fougères", - "ref": "FRG10P35021A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1729627219668368, - 48.34361336413087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Ibis Style Fougères", - "ref": "FRG10P35021A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1729627219668368, - 48.34361336413087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Ibis Style Fougères", - "ref": "FRG10P35021A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1729627219668368, - 48.34361336413087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Ibis Style Fougères", - "ref": "FRG10P35021A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09371, - 46.118865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage Quantin", - "ref": "FRG10P03107A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.379127, - 45.63536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GARAGE DU CENTRE", - "ref": "FRG10P42059A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384715, - 48.754223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage de la Senia", - "ref": "FRG10P94073A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.384715, - 48.754223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage de la Senia", - "ref": "FRG10P94073A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371912, - 48.622446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage de la Marinière", - "ref": "FRG10P91235A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371912, - 48.622446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage de la Marinière", - "ref": "FRG10P91235A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22544312, - 45.72749023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage Cheminal - Volkswagen", - "ref": "FRG10P42094A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22544312, - 45.72749023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage Cheminal - Volkswagen", - "ref": "FRG10P42094A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.22544312, - 45.72749023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Garage Cheminal - Volkswagen", - "ref": "FRG10P42094A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.755409, - 45.667861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMMVERT - BRIGNAIS", - "ref": "FRG10P69027A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.161233, - 45.287634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMM VERT - MONISTROL SUR LOIRE", - "ref": "FRG10P43137A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.161233, - 45.287634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMM VERT - MONISTROL SUR LOIRE", - "ref": "FRG10P43137A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.161233, - 45.287634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "GAMM VERT - MONISTROL SUR LOIRE", - "ref": "FRG10P43137A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2324345613741965, - 46.18080358900933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Eurocommercial Etrembières", - "ref": "FRG10P74118A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.796642, - 48.872293 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CERTAS Eurodisney", - "ref": "FRG10P77132A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697979, - 48.045049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", - "ref": "FRG10P45104A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.709345, - 47.990865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", - "ref": "FRG10P45338A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.736521, - 47.918207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", - "ref": "FRG10P45312A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.736521, - 47.918207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", - "ref": "FRG10P45312A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.792905, - 48.035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", - "ref": "FRG10P45249A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.792905, - 48.035 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", - "ref": "FRG10P45249A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672043, - 48.01739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - PANNES", - "ref": "FRG10P45247A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.672043, - 48.01739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - PANNES", - "ref": "FRG10P45247A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63116, - 47.940856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL", - "ref": "FRG10P45185A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63116, - 47.940856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL", - "ref": "FRG10P45185A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.697979, - 48.045049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", - "ref": "FRG10P45104A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78804, - 44.13691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Mercure Orange Centre", - "ref": "FRG10P84087A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786343, - 47.952598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", - "ref": "FRG10P45102A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786343, - 47.952598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", - "ref": "FRG10P45102A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.626097, - 47.962275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", - "ref": "FRG10P45092A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.626097, - 47.962275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", - "ref": "FRG10P45092A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.740798, - 48.043359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CEPOY", - "ref": "FRG10P45061A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.740798, - 48.043359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - CEPOY", - "ref": "FRG10P45061A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.774467, - 47.96808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", - "ref": "FRG10P45004B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.774467, - 47.96808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", - "ref": "FRG10P45004B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.772783, - 47.96827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", - "ref": "FRG10P45004A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.772783, - 47.96827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", - "ref": "FRG10P45004A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1058477614826088, - 50.57202836954545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Aéroport de Lille-Lesquin", - "ref": "FRG10P59343A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1058477614826088, - 50.57202836954545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Aéroport de Lille-Lesquin", - "ref": "FRG10P59343A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1058477614826088, - 50.57202836954545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Aéroport de Lille-Lesquin", - "ref": "FRG10P59343A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1058477614826088, - 50.57202836954545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Aéroport de Lille-Lesquin", - "ref": "FRG10P59343A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1058477614826088, - 50.57202836954545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Aéroport de Lille-Lesquin", - "ref": "FRG10P59343A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1058477614826088, - 50.57202836954545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Aéroport de Lille-Lesquin", - "ref": "FRG10P59343A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.709345, - 47.990865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", - "ref": "FRG10P45338A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.686008, - 47.945956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - VIMORY", - "ref": "FRG10P445345A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.686008, - 47.945956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "AGGLOMERATION MONTARGOISE - VIMORY", - "ref": "FRG10P445345A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.237656, - 45.638173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CASINO DE MONTROND", - "ref": "FRG10P42149A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.237656, - 45.638173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CASINO DE MONTROND", - "ref": "FRG10P42149A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5596131075866615, - 48.83673315761998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Biocoop Granville", - "ref": "FRG10P50647A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.188537, - 43.729626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Nice Lingostière", - "ref": "FRG10P06088A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.687658, - 47.845833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Market Belondis", - "ref": "FRG10P29236A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.687658, - 47.845833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Carrefour Market Belondis", - "ref": "FRG10P29236A", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5596131075866615, - 48.83673315761998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Biocoop Granville", - "ref": "FRG10P50647A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5596131075866615, - 48.83673315761998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Biocoop Granville", - "ref": "FRG10P50647A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78804, - 44.13691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Hôtel Mercure Orange Centre", - "ref": "FRG10P84087A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.108962, - 43.1150004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "CENTRE COMMERCIAL CENTR'AZUR", - "ref": "FRG10P83069A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1161033, - 45.1437823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Intermarché Yssingeaux", - "ref": "FRG10P43268A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.154298, - 46.162964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", - "ref": "FRG10P17300A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1161033, - 45.1437823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Intermarché Yssingeaux", - "ref": "FRG10P43268A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.154298, - 46.162964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", - "ref": "FRG10P17300A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14858, - 46.1598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", - "ref": "FRG10P17300B", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.14858, - 46.1598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", - "ref": "FRG10P17300B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15676, - 46.15701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", - "ref": "FRG10P17300D", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15676, - 46.15701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", - "ref": "FRG10P17300D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.151072, - 46.16634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", - "ref": "FRG10P17300C", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5214733456906524, - 47.76058808735231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE DAMPIERRE", - "ref": "FRG10P45122A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5214733456906524, - 47.76058808735231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE DAMPIERRE", - "ref": "FRG10P45122A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3277, - 46.7179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "UAB", - "ref": "FRG10P85089A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3277, - 46.7179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "UAB", - "ref": "FRG10P85089A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3277, - 46.7179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "UAB", - "ref": "FRG10P85089A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3277, - 46.7179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "UAB", - "ref": "FRG10P85089A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758303, - 42.641425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Super U Thuir", - "ref": "FRG10P66210A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758303, - 42.641425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Super U Thuir", - "ref": "FRG10P66210A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758303, - 42.641425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Super U Thuir", - "ref": "FRG10P66210A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758303, - 42.641425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Super U Thuir", - "ref": "FRG10P66210A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758303, - 42.641425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Super U Thuir", - "ref": "FRG10P66210A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.758303, - 42.641425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Super U Thuir", - "ref": "FRG10P66210A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.151072, - 46.16634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", - "ref": "FRG10P17300C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396822, - 45.452227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Meritor", - "ref": "FRG10P42218AB", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396822, - 45.452227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Meritor", - "ref": "FRG10P42218AB", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.63659823824593, - 45.67568495884853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MAIRIE OLLIERGUES", - "ref": "FRG10P63258B", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.63659823824593, - 45.67568495884853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MAIRIE OLLIERGUES", - "ref": "FRG10P63258B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.704651, - 45.64493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Vertolaye", - "ref": "FRG10P63454A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.704651, - 45.64493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Vertolaye", - "ref": "FRG10P63454A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.935323, - 45.683113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MAIRIE DE MOUXY", - "ref": "FRG10P73182A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.935323, - 45.683113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MAIRIE DE MOUXY", - "ref": "FRG10P73182A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786, - 48.092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Ferrières-en-Gatinais", - "ref": "FRG10P45145A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.786, - 48.092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Ferrières-en-Gatinais", - "ref": "FRG10P45145A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6301873, - 47.7802058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING RUE NATIONALE", - "ref": "FRG10P45028C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6301873, - 47.7802058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING RUE NATIONALE", - "ref": "FRG10P45028C", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6296, - 47.7751976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING GRAND MAIL", - "ref": "FRG10P45028D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6296, - 47.7751976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING GRAND MAIL", - "ref": "FRG10P45028D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6206933, - 47.780758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING AGORA", - "ref": "FRG10P45028B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6206933, - 47.780758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING AGORA", - "ref": "FRG10P45028B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6206933, - 47.780758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING AGORA", - "ref": "FRG10P45028B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6206933, - 47.780758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Mairie de Beaugency - PARKING AGORA", - "ref": "FRG10P45028B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.309668, - 45.588589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "La Charpinière", - "ref": "FRG10P42222A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.309668, - 45.588589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "La Charpinière", - "ref": "FRG10P42222A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.309668, - 45.588589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "La Charpinière", - "ref": "FRG10P42222A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.309668, - 45.588589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "La Charpinière", - "ref": "FRG10P42222A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.309668, - 45.588589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "La Charpinière", - "ref": "FRG10P42222A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.309668, - 45.588589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "La Charpinière", - "ref": "FRG10P42222A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578157, - 45.38413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "King Jouet Voiron", - "ref": "FRG10P38563A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578157, - 45.38413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "King Jouet Voiron", - "ref": "FRG10P38563A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578157, - 45.38413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "King Jouet Voiron", - "ref": "FRG10P38563A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396822, - 45.452227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Meritor", - "ref": "FRG10P42218AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578157, - 45.38413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "King Jouet Voiron", - "ref": "FRG10P38563A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.396822, - 45.452227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Meritor", - "ref": "FRG10P42218AB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.262156, - 45.518189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT AGENCE LOSANGE", - "ref": "FRG10P42279A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.420417, - 45.44609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "STEEL Parkings", - "ref": "FRG10P42218AA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6265527585509747, - 45.87688686929552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Salaison Fournet-Fayard", - "ref": "FRG10P63231A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6265527585509747, - 45.87688686929552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "Salaison Fournet-Fayard", - "ref": "FRG10P63231A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578157, - 45.38413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "King Jouet Voiron", - "ref": "FRG10P38563A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.262156, - 45.518189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT AGENCE LOSANGE", - "ref": "FRG10P42279A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.383562, - 45.459929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "RENAULT THIVOLLE ST ETIENNE", - "ref": "FRG10P42218AC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173461, - 48.877092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171649, - 48.883328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173461, - 48.877092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173461, - 48.877092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173461, - 48.877092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171649, - 48.883328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187721, - 48.876249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171649, - 48.883328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171649, - 48.883328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171649, - 48.883328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187721, - 48.876249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200918, - 48.876649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187721, - 48.876249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187721, - 48.876249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197047, - 48.863147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197047, - 48.863147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197047, - 48.863147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197047, - 48.863147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197047, - 48.863147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197047, - 48.863147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1924, - 48.868154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1924, - 48.868154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1924, - 48.868154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1924, - 48.868154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181756, - 48.86333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181756, - 48.86333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181756, - 48.86333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202896, - 48.871499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202896, - 48.871499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202896, - 48.871499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202896, - 48.871499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202896, - 48.871499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202896, - 48.871499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200918, - 48.876649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200918, - 48.876649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200918, - 48.876649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181756, - 48.86333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169361, - 48.887705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169361, - 48.887705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169361, - 48.887705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169361, - 48.887705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.169361, - 48.887705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.180334, - 48.880227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2666712, - 48.891262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2666712, - 48.891262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271036, - 48.87881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271036, - 48.87881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271036, - 48.87881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271036, - 48.87881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484809, - 48.953583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.415652, - 48.857735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466539, - 48.948493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466539, - 48.948493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466539, - 48.948493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462518, - 48.937787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462518, - 48.937787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462518, - 48.937787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462518, - 48.937787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462518, - 48.937787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.415652, - 48.857735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.415652, - 48.857735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.415652, - 48.857735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42693, - 48.877739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42693, - 48.877739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42693, - 48.877739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42693, - 48.877739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418981, - 48.876052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418981, - 48.876052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418981, - 48.876052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418981, - 48.876052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418981, - 48.876052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484809, - 48.953583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484809, - 48.953583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484809, - 48.953583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466539, - 48.948493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424428, - 48.934799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424428, - 48.934799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424428, - 48.934799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.579557, - 48.91443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.579557, - 48.91443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.579557, - 48.91443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.579557, - 48.91443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.579557, - 48.91443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.550023, - 48.904666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.550023, - 48.904666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.550023, - 48.904666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.550023, - 48.904666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.550023, - 48.904666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54646, - 48.910391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54646, - 48.910391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54646, - 48.910391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54646, - 48.910391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.426986, - 48.932195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.426986, - 48.932195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.426986, - 48.932195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.426986, - 48.932195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.426986, - 48.932195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.426986, - 48.932195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424428, - 48.934799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424428, - 48.934799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484809, - 48.953583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48856985, - 48.94913362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48856985, - 48.94913362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387797, - 48.901705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387797, - 48.901705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387797, - 48.901705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387797, - 48.901705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.387797, - 48.901705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378693, - 48.909141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378693, - 48.909141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378693, - 48.909141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378693, - 48.909141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378693, - 48.909141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378192, - 48.914588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378192, - 48.914588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378192, - 48.914588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378192, - 48.914588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378192, - 48.914588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383063, - 48.913211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383063, - 48.913211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383063, - 48.913211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383063, - 48.913211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383063, - 48.913211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48856985, - 48.94913362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48856985, - 48.94913362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48856985, - 48.94913362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5058873, - 48.93053723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5058873, - 48.93053723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5058873, - 48.93053723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5058873, - 48.93053723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5058873, - 48.93053723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5058873, - 48.93053723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49895672, - 48.94121732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49895672, - 48.94121732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49895672, - 48.94121732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49895672, - 48.94121732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49895672, - 48.94121732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49967389, - 48.93369727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317304, - 48.784697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250672, - 48.768565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279994, - 48.768197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27218497, - 48.76457362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27218497, - 48.76457362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27218497, - 48.76457362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27218497, - 48.76457362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255503, - 48.767361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255503, - 48.767361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255503, - 48.767361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255503, - 48.767361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255503, - 48.767361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255503, - 48.767361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250672, - 48.768565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250672, - 48.768565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250672, - 48.768565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250672, - 48.768565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2904931, - 48.76595607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317304, - 48.784697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279994, - 48.768197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279994, - 48.768197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279994, - 48.768197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279994, - 48.768197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28357617, - 48.82950414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28357617, - 48.82950414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28357617, - 48.82950414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28357617, - 48.82950414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26103455, - 48.82914716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26103455, - 48.82914716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26103455, - 48.82914716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26103455, - 48.82914716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27441884, - 48.82816072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27441884, - 48.82816072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27441884, - 48.82816072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27441884, - 48.82816072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27441884, - 48.82816072 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27849366, - 48.83087258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27849366, - 48.83087258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27849366, - 48.83087258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27849366, - 48.83087258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27849366, - 48.83087258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27849366, - 48.83087258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317304, - 48.784697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317304, - 48.784697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.311957, - 48.779158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3067, - 48.76306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3067, - 48.76306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3067, - 48.76306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3067, - 48.76306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3067, - 48.76306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3007512, - 48.7503152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335556, - 48.705551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335556, - 48.705551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335556, - 48.705551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335556, - 48.705551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335556, - 48.705551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370823, - 48.690763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370823, - 48.690763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370823, - 48.690763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370823, - 48.690763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370823, - 48.690763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.311957, - 48.779158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.311957, - 48.779158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.311957, - 48.779158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.311957, - 48.779158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316886, - 48.78436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316886, - 48.78436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316886, - 48.78436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316886, - 48.78436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316886, - 48.78436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322502, - 48.777139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322502, - 48.777139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322502, - 48.777139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322502, - 48.777139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322502, - 48.777139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322502, - 48.777139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31383, - 48.73274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31383, - 48.73274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31383, - 48.73274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31383, - 48.73274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31383, - 48.73274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31383, - 48.73274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26183571, - 48.82380279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.278957, - 48.887095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279206, - 48.880952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279206, - 48.880952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279206, - 48.880952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265676, - 48.885127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265676, - 48.885127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265676, - 48.885127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265676, - 48.885127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266284, - 48.895496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266284, - 48.895496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274689, - 48.883412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274689, - 48.883412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.278957, - 48.887095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26183571, - 48.82380279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255578, - 48.875794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255578, - 48.875794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31451738, - 48.82207878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31451738, - 48.82207878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31451738, - 48.82207878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31451738, - 48.82207878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31451738, - 48.82207878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32785348, - 48.81722451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32785348, - 48.81722451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32785348, - 48.81722451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32785348, - 48.81722451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279206, - 48.880952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266735, - 48.888927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.266735, - 48.888927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274565, - 48.886673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274626, - 48.880962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274626, - 48.880962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.272622, - 48.884055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.272622, - 48.884055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255114, - 48.882007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255114, - 48.882007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262574, - 48.886966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262574, - 48.886966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26164776, - 48.88806409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26164776, - 48.88806409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260021, - 48.883513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260021, - 48.883513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265738, - 48.880995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265738, - 48.880995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276458, - 48.889513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276458, - 48.889513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.272288, - 48.891649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.272288, - 48.891649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281346, - 48.888233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281346, - 48.888233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274565, - 48.886673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32785348, - 48.81722451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26791608, - 48.82499159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26791608, - 48.82499159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26791608, - 48.82499159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26791608, - 48.82499159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26791608, - 48.82499159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26791608, - 48.82499159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26128899, - 48.82162691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26128899, - 48.82162691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26128899, - 48.82162691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26128899, - 48.82162691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26128899, - 48.82162691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26128899, - 48.82162691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-03-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26817216, - 48.83272786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26817216, - 48.83272786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26817216, - 48.83272786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26817216, - 48.83272786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26817216, - 48.83272786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26183571, - 48.82380279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26183571, - 48.82380279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26183571, - 48.82380279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26644659, - 48.8312661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399966, - 48.742641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402018, - 48.769975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402018, - 48.769975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402018, - 48.769975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402018, - 48.769975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413793, - 48.771796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413793, - 48.771796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413793, - 48.771796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413793, - 48.771796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413793, - 48.771796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413922, - 48.761755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413922, - 48.761755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413922, - 48.761755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413922, - 48.761755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413922, - 48.761755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520342, - 48.835744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520342, - 48.835744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520342, - 48.835744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520342, - 48.835744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520342, - 48.835744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.522605, - 48.946546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333029, - 48.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333029, - 48.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333029, - 48.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333029, - 48.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.333029, - 48.9122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33084, - 48.91506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33084, - 48.91506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33084, - 48.91506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33084, - 48.91506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33084, - 48.91506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528189, - 48.939106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528189, - 48.939106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.511343, - 48.88911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.511343, - 48.88911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.511343, - 48.88911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.511343, - 48.88911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.511343, - 48.88911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523168, - 48.881865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523168, - 48.881865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523168, - 48.881865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523168, - 48.881865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523168, - 48.881865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367743, - 48.955523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367743, - 48.955523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367743, - 48.955523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367743, - 48.955523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367743, - 48.955523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.381677, - 48.952051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.381677, - 48.952051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.381677, - 48.952051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.381677, - 48.952051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.381677, - 48.952051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528189, - 48.939106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528189, - 48.939106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528189, - 48.939106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399966, - 48.742641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399966, - 48.742641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53491, - 48.832005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44084594, - 48.85071082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44135361, - 48.84684538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44135361, - 48.84684538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447183, - 48.846896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447183, - 48.846896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4368853, - 48.8514798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4368853, - 48.8514798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42866225, - 48.8438568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42866225, - 48.8438568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424445, - 48.847891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424445, - 48.847891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53491, - 48.832005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399966, - 48.742641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53491, - 48.832005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53491, - 48.832005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53491, - 48.832005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53511, - 48.823691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53511, - 48.823691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53511, - 48.823691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53511, - 48.823691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53511, - 48.823691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544022, - 48.827653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544022, - 48.827653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544022, - 48.827653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44084594, - 48.85071082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43712014, - 48.84624221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43712014, - 48.84624221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44706335, - 48.85030215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452451, - 48.846774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452451, - 48.846774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452451, - 48.846774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452451, - 48.846774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452451, - 48.846774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443435, - 48.847775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443435, - 48.847775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443435, - 48.847775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443435, - 48.847775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433171, - 48.848592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433171, - 48.848592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433171, - 48.848592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433171, - 48.848592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433171, - 48.848592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434339, - 48.844408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434339, - 48.844408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434339, - 48.844408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.434339, - 48.844408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45519471, - 48.84968646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45519471, - 48.84968646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45605117, - 48.84609748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.45605117, - 48.84609748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44706335, - 48.85030215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544022, - 48.827653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544022, - 48.827653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535109, - 48.721889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.487477, - 48.793445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.487477, - 48.793445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.487477, - 48.793445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.487477, - 48.793445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513764, - 48.794114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513764, - 48.794114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513764, - 48.794114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513764, - 48.794114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574213, - 48.789679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574213, - 48.789679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574213, - 48.789679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574213, - 48.789679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540299, - 48.786073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540299, - 48.786073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540299, - 48.786073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540299, - 48.786073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540299, - 48.786073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40733, - 48.749487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40733, - 48.749487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40733, - 48.749487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40733, - 48.749487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40733, - 48.749487 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399966, - 48.742641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.487477, - 48.793445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535109, - 48.721889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535109, - 48.721889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535109, - 48.721889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535109, - 48.721889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566491, - 48.718446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566491, - 48.718446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566491, - 48.718446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566491, - 48.718446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566491, - 48.718446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4596527, - 48.8142151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574213, - 48.789679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479014, - 48.864371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41590762, - 48.85222209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41590762, - 48.85222209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433322, - 48.868266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433322, - 48.868266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433322, - 48.868266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433322, - 48.868266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433322, - 48.868266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479014, - 48.864371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479014, - 48.864371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479014, - 48.864371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479014, - 48.864371 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.458188, - 48.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.458188, - 48.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.458188, - 48.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.458188, - 48.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.458188, - 48.85997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452196, - 48.868409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452196, - 48.868409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452196, - 48.868409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452196, - 48.868409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41590762, - 48.85222209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41590762, - 48.85222209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41590762, - 48.85222209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.455554, - 48.876462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42329625, - 48.85316398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42329625, - 48.85316398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42329625, - 48.85316398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42329625, - 48.85316398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443663, - 48.861683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443663, - 48.861683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443663, - 48.861683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443663, - 48.861683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.437502, - 48.857057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.455554, - 48.876462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.455554, - 48.876462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.455554, - 48.876462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431605, - 48.85819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431605, - 48.85819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986937, - 48.94929234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986937, - 48.94929234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986937, - 48.94929234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608577, - 48.95828488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608577, - 48.95828488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608577, - 48.95828488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608577, - 48.95828488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608577, - 48.95828488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32608577, - 48.95828488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29162062, - 48.95992322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29162062, - 48.95992322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29162062, - 48.95992322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29162062, - 48.95992322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29162062, - 48.95992322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29162062, - 48.95992322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30625586, - 48.96022052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30625586, - 48.96022052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30625586, - 48.96022052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30625586, - 48.96022052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30625586, - 48.96022052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.416538, - 48.954492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986937, - 48.94929234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32986937, - 48.94929234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431605, - 48.85819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.575541, - 48.862919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431605, - 48.85819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431605, - 48.85819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431605, - 48.85819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548643, - 48.927719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548643, - 48.927719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548643, - 48.927719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548643, - 48.927719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548643, - 48.927719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338949, - 48.937207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338949, - 48.937207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338949, - 48.937207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338949, - 48.937207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338949, - 48.937207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.575541, - 48.862919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.575541, - 48.862919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.575541, - 48.862919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.575541, - 48.862919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.50413376, - 48.86155006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51122517, - 48.85580614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361115, - 48.93883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361115, - 48.93883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361115, - 48.93883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361115, - 48.93883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361115, - 48.93883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364454, - 48.925114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364454, - 48.925114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364454, - 48.925114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364454, - 48.925114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364454, - 48.925114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51122517, - 48.85580614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34675284, - 48.9032182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34675284, - 48.9032182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34675284, - 48.9032182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34675284, - 48.9032182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34675284, - 48.9032182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35408, - 48.947939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35408, - 48.947939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35408, - 48.947939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35408, - 48.947939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35408, - 48.947939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.362287, - 48.921283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.362287, - 48.921283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.362287, - 48.921283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.362287, - 48.921283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.362287, - 48.921283 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520487, - 48.854488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51122517, - 48.85580614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51122517, - 48.85580614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51122517, - 48.85580614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51122517, - 48.85580614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520487, - 48.854488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520487, - 48.854488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44475, - 48.878112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520487, - 48.854488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44475, - 48.878112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44475, - 48.878112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44475, - 48.878112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371155, - 48.964743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371155, - 48.964743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371155, - 48.964743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371155, - 48.964743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371155, - 48.964743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.520487, - 48.854488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.827864, - 50.696382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SERITUDE", - "ref": "01F855VN9PNYHVV4G2PVR0JSGV", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.523605738717589, - 46.086405764520606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAS Sabo", - "owner:ref:FR:SIREN": "399171545", - "email": "romainmarcon@outlook.fr", - "phone": "0450345512", - "network": "Intermarché", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:00-18:30", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82072, - 43.935617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MA1R1EN0RD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204549, - 48.85204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92280*GAR*BUZENVAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843686, - 43.946211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*P0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843686, - 43.946211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*P0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843686, - 43.946211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*P0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843686, - 43.946211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*P0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.805081, - 43.936094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MONCLAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876349, - 43.940161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MONTFAVET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.805081, - 43.936094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MONCLAR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876349, - 43.940161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MONTFAVET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876349, - 43.940161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MONTFAVET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828155, - 43.947206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*FOLIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876349, - 43.940161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MONTFAVET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.828155, - 43.947206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*FOLIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799193, - 43.929592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*E1SENH0WER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82072, - 43.935617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MA1R1EN0RD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.809693, - 43.936482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*STRUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.809693, - 43.936482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*STRUF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44046, - 48.92568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P93700*DRY*PM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44046, - 48.92568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P93700*DRY*PM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876649, - 43.925813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*RUEDEF1LLES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.876649, - 43.925813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*RUEDEF1LLES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.833258, - 43.952128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*BDC0MBES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.833258, - 43.952128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*BDC0MBES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799193, - 43.929592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*E1SENH0WER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798628, - 43.937354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*FERRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204549, - 48.85204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92280*GAR*BUZENVAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799193, - 43.929592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*E1SENH0WER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.799193, - 43.929592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*E1SENH0WER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204549, - 48.85204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92280*GAR*BUZENVAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170362, - 48.83852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204549, - 48.85204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92280*GAR*BUZENVAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204549, - 48.85204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92280*GAR*BUZENVAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177635, - 48.784153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*WAGNER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813005, - 43.928623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*0LIVADES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177635, - 48.784153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*WAGNER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170362, - 48.83852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170362, - 48.83852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170362, - 48.83852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170362, - 48.83852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170362, - 48.83852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12096, - 48.809898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*BDREINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12096, - 48.809898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*BDREINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130358, - 48.801996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*AVPARIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130358, - 48.801996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*AVPARIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130358, - 48.801996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*AVPARIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130358, - 48.801996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*AVPARIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.475489, - 48.824539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.204549, - 48.85204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92280*GAR*BUZENVAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.798628, - 43.937354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*FERRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262841, - 48.798985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.813005, - 43.928623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*0LIVADES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.130067, - 43.641297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P06270*VNL*COOLWORK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796952, - 43.943149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796952, - 43.943149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796952, - 43.943149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796952, - 43.943149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.821433, - 43.939104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*R0T0NDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.821433, - 43.939104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*R0T0NDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.585713, - 43.230239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83580*GAS*TOURISME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.585713, - 43.230239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83580*GAS*TOURISME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838556, - 43.927832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CAPSUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.838556, - 43.927832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CAPSUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.130067, - 43.641297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P06270*VNL*COOLWORK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.130067, - 43.641297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P06270*VNL*COOLWORK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.130067, - 43.641297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P06270*VNL*COOLWORK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825062, - 43.942905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*SOLIDARITE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.809387, - 43.930192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*TARASC0N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825062, - 43.942905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*SOLIDARITE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262841, - 48.798985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262841, - 48.798985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262841, - 48.798985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262841, - 48.798985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262841, - 48.798985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177635, - 48.784153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*WAGNER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277903, - 48.83624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*75015*PAR1S", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277903, - 48.83624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*75015*PAR1S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277903, - 48.83624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*75015*PAR1S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.660772, - 49.132656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*57740*LONGEV1LLE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.809387, - 43.930192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*TARASC0N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.821979, - 43.929502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MA1R1ESUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.821979, - 43.929502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*MA1R1ESUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816939, - 43.942256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*SOUL1ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.816939, - 43.942256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*SOUL1ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.899412, - 43.940189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84310*AVG*M0R1ERE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.899412, - 43.940189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84310*AVG*M0R1ERE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.977306, - 45.698458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*69800*PR1EST", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.977306, - 45.698458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*69800*PR1EST", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.977306, - 45.698458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*69800*PR1EST", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0833, - 48.240665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*28160*DAMP1ERRE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0833, - 48.240665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*28160*DAMP1ERRE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0833, - 48.240665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*28160*DAMP1ERRE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.490811, - 47.500239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*49480*ANJOU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.490811, - 47.500239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*49480*ANJOU", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.490811, - 47.500239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*49480*ANJOU", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974066, - 45.698131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*69800*PR1EST2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974066, - 45.698131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*69800*PR1EST2", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.974066, - 45.698131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*69800*PR1EST2", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.242799, - 49.120583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*51400*CHAMPAGNES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.242799, - 49.120583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*51400*CHAMPAGNES", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.242799, - 49.120583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*51400*CHAMPAGNES", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.242644, - 49.120556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*51400*CHAMPAGNEN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.242644, - 49.120556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*51400*CHAMPAGNEN", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.242644, - 49.120556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*51400*CHAMPAGNEN", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.660772, - 49.132656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*57740*LONGEV1LLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.660772, - 49.132656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*57740*LONGEV1LLE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177635, - 48.784153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*WAGNER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.448297, - 43.878408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P06380*SOS*PARKING", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177635, - 48.784153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*WAGNER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6342, - 43.314926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*PASTORELLI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.153577, - 48.799674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*VAUBAN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.151875, - 48.806742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*MONTREUIL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.151875, - 48.806742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*MONTREUIL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.136693, - 48.79661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*CHANTIERS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.136693, - 48.79661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*CHANTIERS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.568722, - 43.207298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83420*CRV*GARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.568722, - 43.207298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83420*CRV*GARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793617, - 44.024338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30150*SAU*PLACE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.793617, - 44.024338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30150*SAU*PLACE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.599485, - 43.184096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P420*CRV*GIGARO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.599485, - 43.184096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P420*CRV*GIGARO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616837, - 43.329318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*BOSQUET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616837, - 43.329318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*BOSQUET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6342, - 43.314926 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*PASTORELLI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.177635, - 48.784153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*WAGNER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624927, - 43.325788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*GAUMONT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.624927, - 43.325788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*GAUMONT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.634794, - 43.310428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*MERMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.634794, - 43.310428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*STM*MERMOZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.546778, - 43.337839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*PLT*PARKING", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.546778, - 43.337839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83120*PLT*PARKING", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.586437, - 43.262611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83580*GAS*TRIDENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.586437, - 43.262611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83580*GAS*TRIDENT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.403812, - 43.82887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84400*SVG*PARKING", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.533698, - 43.251851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*COG*PLACEGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.534659, - 43.250675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*COG*PLACEVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.533698, - 43.251851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*COG*PLACEGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.534659, - 43.250675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*COG*PLACEVH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.153577, - 48.799674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*VAUBAN", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.577631, - 43.279636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*STPONS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.577631, - 43.279636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*STPONS", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.577631, - 43.279636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*STPONS", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.534893, - 43.170946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83240*CAV*MEDIATHEQUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.534893, - 43.170946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83240*CAV*MEDIATHEQUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635375, - 43.27044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*PORT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635375, - 43.27044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*PORT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.706553, - 43.443935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83480*PUG*COMMERCIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.706553, - 43.443935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83480*PUG*COMMERCIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.706553, - 43.443935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83480*PUG*COMMERCIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.706553, - 43.443935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83480*PUG*COMMERCIAL", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.522957, - 43.274431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*MAIRIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.522957, - 43.274431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*MAIRIE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57743, - 43.274761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PORT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57743, - 43.274761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PORT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.521344, - 43.272782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*RN7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.521344, - 43.272782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*RN7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.519044, - 43.172029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83240*CAV*CANISSONS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.640612, - 43.269507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*LICES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.640612, - 43.269507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*LICES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36349, - 43.765756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84160*LOU*D943", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36349, - 43.765756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84160*LOU*D943", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635375, - 43.27044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*PORT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635375, - 43.27044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*PORT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.706148, - 43.384124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83640*SZA*PARKING", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.706148, - 43.384124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83640*SZA*PARKING", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661056, - 43.227475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*CLUB55", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661056, - 43.227475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*CLUB55", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466818, - 48.816785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*PLACE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466818, - 48.816785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*PLACE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466818, - 48.816785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*PLACE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445813, - 48.921675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P93700*DRY*BERTHELOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.823253, - 43.953885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*ITALIENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.823253, - 43.953885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*ITALIENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.823253, - 43.953885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*ITALIENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.936124, - 43.948985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84450*JQT*FELIBRIGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.936124, - 43.948985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84450*JQT*FELIBRIGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.800516, - 43.949101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*OULLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.800516, - 43.949101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*OULLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.800516, - 43.949101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*OULLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.800516, - 43.949101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*OULLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210091, - 48.780621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DAUTIER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210091, - 48.780621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DAUTIER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210091, - 48.780621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DAUTIER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210091, - 48.780621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DAUTIER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210091, - 48.780621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DAUTIER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210091, - 48.780621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DAUTIER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215456, - 48.782833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DEWOITINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215456, - 48.782833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DEWOITINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215456, - 48.782833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DEWOITINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215456, - 48.782833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DEWOITINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215456, - 48.782833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DEWOITINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215456, - 48.782833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DEWOITINE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211931, - 48.785437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DASSAULT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211931, - 48.785437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DASSAULT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211931, - 48.785437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DASSAULT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211931, - 48.785437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DASSAULT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211931, - 48.785437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DASSAULT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211931, - 48.785437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*DASSAULT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.823253, - 43.953885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*ITALIENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445813, - 48.921675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P93700*DRY*BERTHELOT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466818, - 48.816785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*PLACE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18696, - 48.838587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466818, - 48.816785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*PLACE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466818, - 48.816785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*PLACE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.129056, - 48.800833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*MAIRIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.129056, - 48.800833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*MAIRIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.764347, - 43.958037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30133*LAS*ELEPHANT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.764347, - 43.958037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30133*LAS*ELEPHANT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768425, - 43.958425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30133*LAS*GAULLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.768425, - 43.958425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30133*LAS*GAULLE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.752516, - 43.962289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30133*LAS*PRIADES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.752516, - 43.962289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P30133*LAS*PRIADES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26765, - 48.827423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26765, - 48.827423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26765, - 48.827423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26765, - 48.827423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26765, - 48.827423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26765, - 48.827423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249932, - 48.822635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249932, - 48.822635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249932, - 48.822635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249932, - 48.822635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249932, - 48.822635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249932, - 48.822635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18696, - 48.838587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18696, - 48.838587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18696, - 48.838587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18696, - 48.838587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18696, - 48.838587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186172, - 48.838071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PLGARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198811, - 48.842788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GRANDERUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198811, - 48.842788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GRANDERUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198811, - 48.842788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GRANDERUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198811, - 48.842788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GRANDERUE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186172, - 48.838071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PLGARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186172, - 48.838071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PLGARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186172, - 48.838071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PLGARE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254679, - 48.782032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*HERR10T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5217, - 43.5468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13100*SMJ*MA1R1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254679, - 48.782032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*HERR10T", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18412, - 48.84965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*4VENTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18412, - 48.84965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*4VENTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18412, - 48.84965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*4VENTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18412, - 48.84965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*4VENTS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.342482, - 43.758861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84160*PUY*GRANG1ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796913, - 43.952673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*BARTHELASSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255673, - 48.775787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BLUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255673, - 48.775787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BLUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255673, - 48.775787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BLUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255673, - 48.775787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BLUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255673, - 48.775787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BLUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255673, - 48.775787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BLUM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.64588, - 43.221173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*SELLETTES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.64588, - 43.221173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*SELLETTES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1973, - 48.85195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEBAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1973, - 48.85195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEBAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.597037, - 44.86645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P33110*BCT*LAF0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.597037, - 44.86645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P33110*BCT*LAF0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.597037, - 44.86645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P33110*BCT*LAF0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.597037, - 44.86645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P33110*BCT*LAF0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197545, - 48.847349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SURESNES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197545, - 48.847349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SURESNES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197545, - 48.847349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SURESNES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186539, - 48.844752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEV0S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186539, - 48.844752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEV0S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186539, - 48.844752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEV0S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181516, - 48.840924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PASTEUR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181516, - 48.840924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PASTEUR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181516, - 48.840924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PASTEUR", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193663, - 48.846928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*C1MET1ERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193663, - 48.846928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*C1MET1ERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193663, - 48.846928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*C1MET1ERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200763, - 48.849002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*JAUNE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200763, - 48.849002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*JAUNE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200763, - 48.849002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*JAUNE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19756, - 48.85446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SU1SSES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19756, - 48.85446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SU1SSES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19756, - 48.85446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SU1SSES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907248, - 43.979318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84270*VDN*P0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.907248, - 43.979318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84270*VDN*P0NT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896984, - 43.986445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84270*VDN*EGU1LLES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.896984, - 43.986445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84270*VDN*EGU1LLES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1973, - 48.85195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEBAT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5217, - 43.5468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13100*SMJ*MA1R1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5217, - 43.5468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13100*SMJ*MA1R1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.464987, - 43.160329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83820*RCM*CANADEL1A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201517, - 48.781246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*EXELMANS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263835, - 48.781822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48649, - 46.24693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P17880*PER*PHARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48649, - 46.24693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P17880*PER*PHARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48649, - 46.24693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P17880*PER*PHARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48649, - 46.24693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P17880*PER*PHARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.042062, - 43.836565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84300*CVL*GAUTH1ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.042062, - 43.836565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84300*CVL*GAUTH1ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.519044, - 43.172029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83240*CAV*CANISSONS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2013-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.448297, - 43.878408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P06380*SOS*PARKING", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.690518, - 43.256472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*SALINS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201517, - 48.781246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*EXELMANS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201517, - 48.781246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*EXELMANS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201517, - 48.781246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*EXELMANS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196945, - 48.781122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*L0UV01S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5217, - 43.5468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13100*SMJ*MA1R1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196945, - 48.781122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*L0UV01S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196945, - 48.781122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*L0UV01S", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196945, - 48.781122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*L0UV01S", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181862, - 48.784202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MA1L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181862, - 48.784202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MA1L", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181862, - 48.784202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MA1L", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181862, - 48.784202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MA1L", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170855, - 48.783949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170855, - 48.783949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MOZART", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170855, - 48.783949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MOZART", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170855, - 48.783949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*MOZART", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57743, - 43.274761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PORT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57743, - 43.274761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PORT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263835, - 48.781822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263835, - 48.781822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263835, - 48.781822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263835, - 48.781822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603186, - 45.612292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*17800*LEGER0UEST", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603186, - 45.612292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*17800*LEGER0UEST", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.603186, - 45.612292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*17800*LEGER0UEST", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24865, - 44.871477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*48200*L0ZERE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24865, - 44.871477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*48200*L0ZERE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24865, - 44.871477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*48200*L0ZERE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25948, - 48.78001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BR1AND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25948, - 48.78001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BR1AND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25948, - 48.78001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BR1AND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25948, - 48.78001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BR1AND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25948, - 48.78001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BR1AND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25948, - 48.78001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*BR1AND", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271471, - 48.783674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*ETANG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271471, - 48.783674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*ETANG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271471, - 48.783674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*ETANG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271471, - 48.783674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*ETANG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271471, - 48.783674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*ETANG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195605, - 48.781261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*RAB0URD1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195605, - 48.781261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*RAB0URD1N", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195605, - 48.781261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*RAB0URD1N", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195605, - 48.781261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*RAB0URD1N", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84218, - 43.93032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CHAMAND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84218, - 43.93032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CHAMAND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84218, - 43.93032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CHAMAND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84218, - 43.93032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CHAMAND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84218, - 43.93032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*CHAMAND", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263835, - 48.781822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.464987, - 43.160329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83820*RCM*CANADEL1A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.342482, - 43.758861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84160*PUY*GRANG1ER", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.294772, - 43.535968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13122*VTB*PLATEAU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871245, - 43.934998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635613, - 43.256121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*T0RPEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635613, - 43.256121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*T0RPEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635613, - 43.256121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*T0RPEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027168, - 43.955152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84740*VLR*V1LLAGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027168, - 43.955152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84740*VLR*V1LLAGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027168, - 43.955152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84740*VLR*V1LLAGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.027168, - 43.955152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84740*VLR*V1LLAGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82889, - 45.275643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*26140*RAMBERT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82889, - 45.275643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*26140*RAMBERT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82889, - 45.275643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*26140*RAMBERT", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871245, - 43.934998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871245, - 43.934998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.871245, - 43.934998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.683721, - 47.862233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PRNO*35470*BA1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.683721, - 47.862233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PRNO*35470*BA1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.926161, - 47.665194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*41600*CHAUM0NT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.926161, - 47.665194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*41600*CHAUM0NT", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.926161, - 47.665194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*41600*CHAUM0NT", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691184, - 48.724352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*67170*BRUMATH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691184, - 48.724352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*67170*BRUMATH", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.691184, - 48.724352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*67170*BRUMATH", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190194, - 48.782472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*TARRON", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190194, - 48.782472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*TARRON", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190194, - 48.782472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*TARRON", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.190194, - 48.782472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78140*VLZ*TARRON", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.635613, - 43.256121 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*T0RPEZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267834, - 48.808019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267834, - 48.808019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267834, - 48.808019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.796913, - 43.952673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84000*AVG*BARTHELASSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.181023, - 48.348536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PRNO*35300*F0UGERES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.181023, - 48.348536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PRNO*35300*F0UGERES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.302399, - 43.538529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13122*VTB*EC0LE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23637, - 48.784747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23637, - 48.784747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23637, - 48.784747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23637, - 48.784747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23637, - 48.784747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23637, - 48.784747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58115, - 43.280687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58115, - 43.280687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58115, - 43.280687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58115, - 43.280687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.581173, - 43.276785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.581173, - 43.276785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.581173, - 43.276785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267834, - 48.808019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267834, - 48.808019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.976272, - 45.526596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73190*AB1S", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.643206, - 43.268741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*F0CH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9732, - 45.52667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*73800*GRAN1ER", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.585656, - 43.284265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*MURESPRE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.592279, - 43.283508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*MURESPLA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.659943, - 43.220607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*N1KK1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.58432, - 43.28033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*GRI*PRAIRIEVIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.431965, - 44.97493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*33240*ME1LLAC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.431965, - 44.97493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*33240*ME1LLAC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.431965, - 44.97493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*33240*ME1LLAC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.431965, - 44.97493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*33240*ME1LLAC", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.431965, - 44.97493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*33240*ME1LLAC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.302399, - 43.538529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P13122*VTB*EC0LE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.643206, - 43.268741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*F0CH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.431965, - 44.97493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*PBP*33240*ME1LLAC", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.465199, - 43.207435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*M0L*MA1R1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.465199, - 43.207435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83310*M0L*MA1R1E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90471, - 43.942662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84310*MOR*VITRIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636581, - 43.272524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*CAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130358, - 48.801996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*AVPARIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.130358, - 48.801996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P78000*VER*AVPARIS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657337, - 43.250875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*GARB1NE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.657337, - 43.250875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83350*RAM*GARB1NE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90471, - 43.942662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84310*MOR*VITRIA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.636581, - 43.272524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P83990*STR*CAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92151, - 44.005089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84320*ENT*GARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92151, - 44.005089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P84320*ENT*GARE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.022143, - 46.877453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.022143, - 46.877453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.235, - 46.96945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.022143, - 46.877453 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83061, - 46.89101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83061, - 46.89101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80859, - 46.462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.00948, - 46.871399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80859, - 46.462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80692, - 46.46651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80692, - 46.46651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.235, - 46.96945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80221, - 46.462318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80221, - 46.462318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80221, - 46.462318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80378, - 46.468151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80378, - 46.468151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31272, - 46.714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.23013, - 46.774151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.23013, - 46.774151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22665, - 46.77294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22665, - 46.77294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38599, - 46.73901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.00948, - 46.871399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.76012, - 46.69736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.38599, - 46.73901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31272, - 46.714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15782, - 46.45393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01449, - 46.871368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22376, - 46.53632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.65902, - 46.6177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7591, - 46.481231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95255, - 46.99136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.95255, - 46.99136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.94492, - 46.995129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.94492, - 46.995129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45214, - 46.90633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45214, - 46.90633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31215, - 46.974091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.31215, - 46.974091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.22376, - 46.53632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16827, - 46.454491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01449, - 46.871368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.15782, - 46.45393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.49111, - 46.425529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.49111, - 46.425529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57682, - 46.41642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57682, - 46.41642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35018, - 46.727699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.35018, - 46.727699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34753, - 46.724319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34753, - 46.724319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01728, - 46.861481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.01728, - 46.861481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.76012, - 46.69736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99678, - 46.97329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7591, - 46.481231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.73754, - 46.504768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.351041, - 46.957664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.351041, - 46.957664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59512, - 46.36944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.59512, - 46.36944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.040817, - 46.914974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.040817, - 46.914974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91576, - 46.657139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.91576, - 46.657139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.11937, - 46.88493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.11937, - 46.88493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.119488, - 46.88022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.119488, - 46.88022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.119488, - 46.88022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.176674, - 46.941901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.176674, - 46.941901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4523, - 46.596981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4523, - 46.596981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390747, - 46.40573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390747, - 46.40573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.390747, - 46.40573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.60784, - 46.74025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.60784, - 46.74025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61386, - 46.74352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61386, - 46.74352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45963, - 46.72031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.351041, - 46.957664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.99678, - 46.97329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17294, - 46.63612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.864479, - 46.861111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.73754, - 46.504768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.74243, - 46.647221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.74243, - 46.647221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.746495, - 46.646595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.746495, - 46.646595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.746495, - 46.646595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05423, - 46.689838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05423, - 46.689838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05157, - 46.686314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.05157, - 46.686314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.879576, - 46.84815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.864479, - 46.861111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17294, - 46.63612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.864479, - 46.861111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.88028, - 46.84565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.88028, - 46.84565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.871946, - 46.848647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.871946, - 46.848647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29272, - 46.672119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29272, - 46.672119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02199, - 46.39301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02199, - 46.39301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8556, - 46.626759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.8556, - 46.626759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.65902, - 46.6177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.16827, - 46.454491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45963, - 46.72031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29718, - 46.947361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10895, - 46.4669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10895, - 46.4669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.10895, - 46.4669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17687, - 46.85087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17687, - 46.85087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17026, - 46.85125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.17026, - 46.85125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13728, - 46.811699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13728, - 46.811699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.13728, - 46.811699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.41197, - 46.93412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.41197, - 46.93412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7537332, - 46.5169739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7537332, - 46.5169739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7537332, - 46.5169739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7537332, - 46.5169739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7537332, - 46.5169739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7537332, - 46.5169739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772598, - 46.494529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.772598, - 46.494529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.78187, - 46.497181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.78187, - 46.497181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.79613, - 46.50195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.79613, - 46.50195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.79573, - 46.494049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.29718, - 46.947361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.92586, - 46.697781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.78418, - 46.49939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.06227, - 46.555099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4251, - 46.492908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.321756, - 46.330966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51163, - 46.684349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51163, - 46.684349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.43012, - 46.34767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.43012, - 46.34767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61797, - 46.46485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61797, - 46.46485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.342638, - 46.573218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.342638, - 46.573218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83562, - 46.6063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.83562, - 46.6063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.06061, - 46.79002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.06061, - 46.79002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.06249, - 46.79406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.06249, - 46.79406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.94701, - 46.720921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.94701, - 46.720921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.96324, - 46.711208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.96324, - 46.711208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9781, - 46.712811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9781, - 46.712811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.33125, - 47.00351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.33125, - 47.00351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.06227, - 46.555099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.79573, - 46.494049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.92586, - 46.697781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.78418, - 46.49939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83792, - 46.781986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8416, - 46.778221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8416, - 46.778221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.50769, - 46.767872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.50769, - 46.767872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.50551, - 46.766079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.50551, - 46.766079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.98991, - 46.819931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.98991, - 46.819931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7726, - 46.541851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7726, - 46.541851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.778495, - 46.514553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.778495, - 46.514553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.321756, - 46.330966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77327, - 46.53415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77327, - 46.53415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77019, - 46.506409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.77019, - 46.506409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.131729, - 46.831223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.131729, - 46.831223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.24947, - 47.000671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.24947, - 47.000671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40227, - 46.5927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40227, - 46.5927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.428843, - 46.702999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4251, - 46.492908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83792, - 46.781986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.778495, - 46.514553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4291, - 46.6909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4282, - 46.671021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40609, - 46.670441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.50997, - 46.940701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40609, - 46.670441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45374, - 46.66589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45374, - 46.66589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4291, - 46.6909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4291, - 46.6909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.428843, - 46.702999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4383, - 46.650558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4383, - 46.650558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4383, - 46.650558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44083, - 46.66913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.44083, - 46.66913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.43236, - 46.682899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4282, - 46.671021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40277, - 46.66093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.40277, - 46.66093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.429953, - 46.669237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.431739, - 46.669009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.431739, - 46.669009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.43236, - 46.682899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.42502, - 46.6642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.50997, - 46.940701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.42502, - 46.6642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200042489", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDEV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05713, - 49.35398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LMAJAU9VM3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05713, - 49.35398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LMAJAU9VM3", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.538061, - 49.286358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BCNP9TW96E", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.538061, - 49.286358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BCNP9TW96E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457717, - 49.334377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RTTMEX22VQ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05713, - 49.35398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LMAJAU9VM3", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.376339, - 49.29459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "N46VHJDQAK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457717, - 49.334377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RTTMEX22VQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045529, - 48.972824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "J9E72TSRLI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045529, - 48.972824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "J9E72TSRLI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.913899, - 48.872356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YTDEL15IL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.913899, - 48.872356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YTDEL15IL4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.856212, - 49.129959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RFATER8YU3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130306, - 49.381893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JVJN0XRMBD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.098968, - 49.287991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HUK16Y2VIO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130306, - 49.381893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JVJN0XRMBD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130294, - 49.381866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IHJ5AEHHQC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.130294, - 49.381866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IHJ5AEHHQC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.138757, - 49.402374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UEPCJ1ONBV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.138757, - 49.402374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UEPCJ1ONBV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.101527, - 49.121693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IGM47RQUIV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.101527, - 49.121693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IGM47RQUIV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.263063, - 49.192703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WOGY4YK72D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.263063, - 49.192703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WOGY4YK72D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.266243, - 49.177143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FH2Y5F6VYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.266243, - 49.177143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FH2Y5F6VYX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.098968, - 49.287991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HUK16Y2VIO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332007, - 49.155018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BENXV427ED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.856212, - 49.129959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RFATER8YU3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.806385, - 49.090714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Z7TCFV54RM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332007, - 49.155018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BENXV427ED", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.283343, - 49.292938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "H1P1PYTVJZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045078, - 49.230087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TJTE9E9IPY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44147, - 49.185043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YBCAAXHFBE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44147, - 49.185043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YBCAAXHFBE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.806385, - 49.090714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Z7TCFV54RM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.007925, - 48.792999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WDC8V4ORJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.007925, - 48.792999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WDC8V4ORJE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48176, - 48.917553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VIVCM51QGG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48176, - 48.917553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VIVCM51QGG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424286, - 49.085377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DZWIKE3NEN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.424286, - 49.085377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DZWIKE3NEN", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.840685, - 49.359657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "REGMVHBLYO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.840685, - 49.359657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "REGMVHBLYO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.283343, - 49.292938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "H1P1PYTVJZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296286, - 49.204266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MNJRPSZUVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212054, - 49.2001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PPAT8F1AHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.296286, - 49.204266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MNJRPSZUVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30948, - 49.18362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AVHMBVDDEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30948, - 49.18362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AVHMBVDDEL", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.308223, - 49.18866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XZV5YXNZQK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.308223, - 49.18866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XZV5YXNZQK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.554104, - 48.844807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YEVQXYXMMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.554104, - 48.844807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YEVQXYXMMI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303376, - 49.171944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JIQBOVFEMZ", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303376, - 49.171944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JIQBOVFEMZ", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303376, - 49.171944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JIQBOVFEMZ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.553656, - 48.850952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IS3DWADVWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.553656, - 48.850952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IS3DWADVWS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212054, - 49.2001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PPAT8F1AHP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.376339, - 49.29459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "N46VHJDQAK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332626, - 49.202087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "G1IUADBW5Q", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.045078, - 49.230087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TJTE9E9IPY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.288273, - 49.149944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NZAMOLTFQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.458241, - 49.276985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CPSHDAIWXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.104626, - 48.823738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VFSQFDC7FS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.104626, - 48.823738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VFSQFDC7FS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.276981, - 49.124573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BKLEA4YHK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.276981, - 49.124573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BKLEA4YHK3", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303596, - 49.034939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CLLQAPXJGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303596, - 49.034939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CLLQAPXJGQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.268632, - 49.014362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XMBUXALML9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.268632, - 49.014362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XMBUXALML9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.526418, - 49.135658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "X48FPHUJQU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.526418, - 49.135658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "X48FPHUJQU", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041252, - 49.387611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "C7MVLEKOXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.041252, - 49.387611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "C7MVLEKOXT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.288273, - 49.149944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NZAMOLTFQS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.452932, - 49.274509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DATGNHU3DP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30163, - 49.2966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WNPDHQMXEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.30163, - 49.2966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WNPDHQMXEF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.313085, - 49.286636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "C8PSNTNXXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.313085, - 49.286636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "C8PSNTNXXV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342878, - 49.213123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VK9H0DVFDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.342878, - 49.213123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VK9H0DVFDH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924642, - 48.889202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OIXFQFMHLO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.332626, - 49.202087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "G1IUADBW5Q", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345371, - 49.2024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EO8WQHNMPB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.345371, - 49.2024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EO8WQHNMPB", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237649, - 49.418694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZUGT4ZAI25", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.237649, - 49.418694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZUGT4ZAI25", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07457, - 49.30206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AU5QM7JWO3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.458241, - 49.276985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CPSHDAIWXX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.452932, - 49.274509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DATGNHU3DP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.042063, - 49.232769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WZVO2GVYMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.201822, - 48.892605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LNBVCEOPZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.042063, - 49.232769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WZVO2GVYMJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677874, - 49.220016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LHXITWLNL8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677874, - 49.220016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LHXITWLNL8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37422, - 49.220695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GQX8TOZGDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37422, - 49.220695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GQX8TOZGDZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.203363, - 49.383171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "A3XTEFNVP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.203363, - 49.383171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "A3XTEFNVP7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.206739, - 49.391857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SHNTRB88GR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.206739, - 49.391857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SHNTRB88GR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502256, - 49.098824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QVMV4MMGBF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.502256, - 49.098824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QVMV4MMGBF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.504844, - 49.101223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JRO5XUKNVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.504844, - 49.101223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JRO5XUKNVX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.201822, - 48.892605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LNBVCEOPZC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457769, - 49.142525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QADLCK0CXV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207155, - 48.908218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "E7G17KGQS8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207155, - 48.908218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "E7G17KGQS8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.200854, - 48.895374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FJDPVYD3VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.200854, - 48.895374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FJDPVYD3VM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.196851, - 48.896561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GXNIEP4LJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.196851, - 48.896561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GXNIEP4LJS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.403748, - 49.113762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "APLE3YWA6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.403748, - 49.113762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "APLE3YWA6J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.220548, - 49.251003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JCXRAXISUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.220548, - 49.251003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JCXRAXISUD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371682, - 49.152481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LUSPLHMJTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371682, - 49.152481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LUSPLHMJTM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.457769, - 49.142525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QADLCK0CXV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.924642, - 48.889202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OIXFQFMHLO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.116762, - 49.28772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AGX3GVGGGP", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.046794, - 49.149574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "J2CAXWCJQ2", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298162, - 49.228291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "D9MFWXE3BX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.432045, - 49.290691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QNVE1QVN1M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.432045, - 49.290691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QNVE1QVN1M", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418581, - 49.334774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FN2ROX2AOD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.418581, - 49.334774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FN2ROX2AOD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.047522, - 49.187656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SYA3HIFJSJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.047522, - 49.187656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SYA3HIFJSJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.327253, - 49.24025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VUHVSPUVEE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.327253, - 49.24025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VUHVSPUVEE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42327, - 49.164383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HKI3EEJ2VG", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42327, - 49.164383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HKI3EEJ2VG", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.42327, - 49.164383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HKI3EEJ2VG", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303067, - 49.226357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NU7TML0PLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303067, - 49.226357 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NU7TML0PLL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298162, - 49.228291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "D9MFWXE3BX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514652, - 49.212273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "W3FDKK3Y4Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11563, - 49.29363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XZTAT4QNOV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11563, - 49.29363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XZTAT4QNOV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.11563, - 49.29363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XZTAT4QNOV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.273392, - 49.245373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JDWZ4GKGLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.273392, - 49.245373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JDWZ4GKGLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.027659, - 49.33881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BM0HFP9CGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.027659, - 49.33881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BM0HFP9CGY", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83958454, - 49.20576297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JXVJI1COJF", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83958454, - 49.20576297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JXVJI1COJF", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83958454, - 49.20576297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JXVJI1COJF", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.079897, - 49.204884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MSSZCNYGB6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.079897, - 49.204884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MSSZCNYGB6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339124, - 49.27467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PGOVR7LE8Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.275651, - 49.24791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YDK2B0ERXB", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.275651, - 49.24791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YDK2B0ERXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207299, - 49.124958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TYPWUQ7IGF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.207299, - 49.124958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TYPWUQ7IGF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.151468, - 49.10059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QQ9ULMFY9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.151468, - 49.10059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QQ9ULMFY9S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.439307, - 49.08564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "K9DQ5BOGXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.439307, - 49.08564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "K9DQ5BOGXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406258, - 49.265347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AWSCCFXPIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.406258, - 49.265347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AWSCCFXPIZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.059013, - 49.252686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RM3XAKQMTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.059013, - 49.252686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RM3XAKQMTG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03761395, - 49.01914912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZZNFVRZSHY", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03761395, - 49.01914912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZZNFVRZSHY", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.03761395, - 49.01914912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZZNFVRZSHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.165716, - 49.127666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "J69U6QU8AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.165716, - 49.127666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "J69U6QU8AD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623846, - 49.338478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TL6QWRNSBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.623846, - 49.338478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TL6QWRNSBJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.029128, - 49.306469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GDUIKKNQ0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.029128, - 49.306469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GDUIKKNQ0H", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.633224, - 49.021641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RQ8FFLKBGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.633224, - 49.021641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RQ8FFLKBGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.834075, - 49.182762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CIQQYCDPTL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.834075, - 49.182762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CIQQYCDPTL", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.190402, - 49.23114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KTAWLU4IZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.190402, - 49.23114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KTAWLU4IZC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706692, - 49.270863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JLGGHEVQB8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706692, - 49.270863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JLGGHEVQB8", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707942, - 49.280796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZABVAJT7UQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707942, - 49.280796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZABVAJT7UQ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.339124, - 49.27467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PGOVR7LE8Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514652, - 49.212273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "W3FDKK3Y4Y", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.046794, - 49.149574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "J2CAXWCJQ2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366633, - 49.18668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CKEU2AXBPX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365959, - 49.180958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JERHB0BEAB", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.347497, - 49.197529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "L9PDURSKHV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.347497, - 49.197529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "L9PDURSKHV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612158, - 49.177962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JZIMSLSNZI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612158, - 49.177962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JZIMSLSNZI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612158, - 49.177962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JZIMSLSNZI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355559, - 49.184055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ANOW48R3FC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355559, - 49.184055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ANOW48R3FC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371259, - 49.180359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XOUSTRWIIJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.371259, - 49.180359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XOUSTRWIIJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34267, - 49.160675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "G4DK6RTQ3D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34267, - 49.160675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "G4DK6RTQ3D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.366633, - 49.18668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CKEU2AXBPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.348103, - 49.178352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FLQCEIECNA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512477, - 49.203705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GI08L1LAZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.348103, - 49.178352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FLQCEIECNA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365122, - 49.199177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RJ5B3FAJRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365122, - 49.199177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RJ5B3FAJRM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380302, - 49.204082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DELR9H5LME", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380302, - 49.204082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DELR9H5LME", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360357, - 49.187054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TTGYEWCD4D", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360357, - 49.187054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TTGYEWCD4D", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.254735, - 49.146415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MEUKZBWL9R", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.254735, - 49.146415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MEUKZBWL9R", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.767352, - 49.066422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Y6SL8CGLG1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.767352, - 49.066422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Y6SL8CGLG1", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.761437, - 49.158428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WDURE5OIIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.761437, - 49.158428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WDURE5OIIU", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.365959, - 49.180958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JERHB0BEAB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359741, - 49.203658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ATTXYEMZSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359741, - 49.203658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ATTXYEMZSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360565, - 49.161114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KPSZKEMHNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.512477, - 49.203705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GI08L1LAZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.326488, - 49.044224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "T6CP8IZJCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.326488, - 49.044224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "T6CP8IZJCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.417781, - 49.16581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BJLVQM5TAS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.417781, - 49.16581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BJLVQM5TAS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.116762, - 49.28772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AGX3GVGGGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316764, - 49.127815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CSMXC6RE5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355928, - 49.180374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XLR3DJICQY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355928, - 49.180374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XLR3DJICQY", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369844, - 49.176125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BXFKK77EJT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369844, - 49.176125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BXFKK77EJT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.401482, - 49.175629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BJGJFYAMMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.401482, - 49.175629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BJGJFYAMMJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34179, - 49.190582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PISAGDEROT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.34179, - 49.190582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PISAGDEROT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396299, - 49.191658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KARW5YQ2G0", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.346506, - 49.183704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EYSLWKWYZR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.346506, - 49.183704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EYSLWKWYZR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.346611, - 49.181694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "R8RWH8HXZS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.346611, - 49.181694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "R8RWH8HXZS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402715, - 49.182137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NPPA9S0IZH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402715, - 49.182137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NPPA9S0IZH", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364503, - 49.184155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SAKCOZYZCV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364503, - 49.184155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SAKCOZYZCV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380138, - 49.199852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "A1BDJHEJBW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.380138, - 49.199852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "A1BDJHEJBW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.360565, - 49.161114 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KPSZKEMHNF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.07457, - 49.30206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AU5QM7JWO3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.396299, - 49.191658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KARW5YQ2G0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.316764, - 49.127815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CSMXC6RE5P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576396, - 48.920029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DI3I8QNHXO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303315, - 49.000648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CTQR1SV2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.303315, - 49.000648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CTQR1SV2HQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.977295, - 48.825451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EZYDLQMDET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.977295, - 48.825451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EZYDLQMDET", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497137, - 49.180573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VVKHTT0N8X", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497137, - 49.180573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VVKHTT0N8X", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707928, - 49.283667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EP02VR6FM7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707928, - 49.283667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EP02VR6FM7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.845168, - 49.011806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TPQYPCO3UW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.845168, - 49.011806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TPQYPCO3UW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.673939, - 49.266899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AEY2CFNUTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.673939, - 49.266899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "AEY2CFNUTF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.576396, - 48.920029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DI3I8QNHXO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030718, - 49.02076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OUXSBPXK6V", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606036, - 48.857273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KIWGD0YPCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.028522, - 49.016411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EZNQHP1WWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.028522, - 49.016411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EZNQHP1WWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038759, - 48.832748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HHQQUNK71G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038759, - 48.832748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HHQQUNK71G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048561, - 48.840977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UTPIDLSOX7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048561, - 48.840977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UTPIDLSOX7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21517, - 49.057525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MACRGC0HBC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.21517, - 49.057525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MACRGC0HBC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8074, - 49.347195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KMIYT7TETI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8074, - 49.347195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KMIYT7TETI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.750126, - 49.240765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "E2RRBXWBWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.750126, - 49.240765 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "E2RRBXWBWF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212339, - 49.299999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "L1KGSJOGST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.606036, - 48.857273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KIWGD0YPCW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718632, - 49.27946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BSWUMHG7ZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.220241, - 49.178085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZUIJICJJYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.297287, - 49.053543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EIKF1QJBPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.649742, - 49.292091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Z454AWT7LX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298521, - 49.073658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RTYRGHNJ1K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.298521, - 49.073658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RTYRGHNJ1K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09212, - 49.338612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "W0OVAVEOX2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.09212, - 49.338612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "W0OVAVEOX2", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391624, - 49.327827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DTBNNOB9WY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.391624, - 49.327827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DTBNNOB9WY", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.281319, - 49.262711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WX6KIL9ED5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.281319, - 49.262711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WX6KIL9ED5", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.395594, - 49.332512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KTL39IK8IX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.395594, - 49.332512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KTL39IK8IX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269729, - 49.317024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IVMBTJCG7K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269729, - 49.317024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IVMBTJCG7K", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.297287, - 49.053543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EIKF1QJBPH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718632, - 49.27946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BSWUMHG7ZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.202366, - 49.137093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QEINKRD3YH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.202366, - 49.137093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QEINKRD3YH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.207578, - 49.136806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MTZJ9GHEC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.207578, - 49.136806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MTZJ9GHEC9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568107, - 49.277843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VYHQHHZGSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568107, - 49.277843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VYHQHHZGSX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185999, - 49.348248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EUQ9MLUPEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.185999, - 49.348248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EUQ9MLUPEK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00949802, - 49.141176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CBX7KUYBYW", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00949802, - 49.141176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CBX7KUYBYW", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.00949802, - 49.141176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CBX7KUYBYW", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.900723, - 48.800545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "INJBEBIMWZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.900723, - 48.800545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "INJBEBIMWZ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.212339, - 49.299999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "L1KGSJOGST", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44972, - 49.258343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GVMAEKKID2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.44972, - 49.258343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GVMAEKKID2", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8849, - 48.84539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NUVRR1EADB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.854415, - 48.840118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "S3XSSU87WY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.516991, - 49.343346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VAT5RXQZXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.516991, - 49.343346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VAT5RXQZXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.450656, - 49.1567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MDE2V8GM3H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.450656, - 49.1567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MDE2V8GM3H", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.904563, - 49.374043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HS5GOHL3FX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.904563, - 49.374043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HS5GOHL3FX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.657508, - 49.07996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Y6V0AW4AW2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.657508, - 49.07996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Y6V0AW4AW2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.126629, - 49.399658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LWXGXZ6NVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.126629, - 49.399658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LWXGXZ6NVG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566371, - 49.290745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GWNCBEVKLC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566371, - 49.290745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GWNCBEVKLC", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8849, - 48.84539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NUVRR1EADB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478406, - 48.9856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "M5E6SNDFBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.888584, - 48.84039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GLD9JG2RUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.888584, - 48.84039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GLD9JG2RUT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.882365, - 48.849442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "X76ERWSQBX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.882365, - 48.849442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "X76ERWSQBX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.890959, - 48.840595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CPTGDV5IRH", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.890959, - 48.840595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CPTGDV5IRH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.901956, - 48.844872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RHIZSXG2KA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.901956, - 48.844872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RHIZSXG2KA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.885866, - 48.837307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FZE0IT59TV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.885866, - 48.837307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "FZE0IT59TV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.651174, - 49.080152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CPFJ1PSP4H", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.651174, - 49.080152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CPFJ1PSP4H", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.350859, - 49.150547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "G7U2LCCD4Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.854415, - 48.840118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "S3XSSU87WY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672848, - 48.853397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WRQX6K3RY5", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.672848, - 48.853397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WRQX6K3RY5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.292248, - 49.024796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UTD4TMRIWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.478406, - 48.9856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "M5E6SNDFBJ", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.472951, - 48.986382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PFMKY61J2Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.472951, - 48.986382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PFMKY61J2Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.481821, - 48.989704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WIO5B4HAFQ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.481821, - 48.989704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "WIO5B4HAFQ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624253, - 49.176746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LA2MHNO1J0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624253, - 49.176746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LA2MHNO1J0", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.103004, - 49.34425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GNV9UFSQLR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.103004, - 49.34425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GNV9UFSQLR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.905397, - 49.308865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MEXJIN27J7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.905397, - 49.308865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MEXJIN27J7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.902956, - 49.3088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "V4TIQY3EGA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.902956, - 49.3088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "V4TIQY3EGA", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08856957, - 49.01214577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "V8ZXCF8KLK", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08856957, - 49.01214577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "V8ZXCF8KLK", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.08856957, - 49.01214577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "V8ZXCF8KLK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.477086, - 49.049606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IZJM7OHIWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.477086, - 49.049606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IZJM7OHIWO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080297, - 49.36565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IHLSGMESO6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080297, - 49.36565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "IHLSGMESO6", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05630619, - 49.25483875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "B5J7TXK8V7", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05630619, - 49.25483875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "B5J7TXK8V7", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.05630619, - 49.25483875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "B5J7TXK8V7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.493794, - 49.077198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TRYMDJ3CBV", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.493794, - 49.077198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TRYMDJ3CBV", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.493794, - 49.077198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TRYMDJ3CBV", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.292248, - 49.024796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UTD4TMRIWV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.649742, - 49.292091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Z454AWT7LX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.030718, - 49.02076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OUXSBPXK6V", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.220241, - 49.178085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZUIJICJJYI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.268813, - 49.146912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NNOGALD1MD", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.830717, - 48.965939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TKVDATEIGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.830717, - 48.965939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TKVDATEIGS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.789644, - 49.219543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RLM6CEWDCK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.789644, - 49.219543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RLM6CEWDCK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.314508, - 49.302155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QRFJYJHILI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.314508, - 49.302155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QRFJYJHILI", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YGKZQ5NRRM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "YGKZQ5NRRM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TUU49NLCLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TUU49NLCLV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JJ44TQLKVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229788, - 49.138123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JJ44TQLKVR", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.268813, - 49.146912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NNOGALD1MD", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.221156, - 49.143112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZJXRR5YPFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869728, - 49.242004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CTHD3M2P9Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.221156, - 49.143112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ZJXRR5YPFP", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15161, - 49.005394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TDEMGY1AN7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15161, - 49.005394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TDEMGY1AN7", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80973, - 48.929178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LSL7IGJCKA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80973, - 48.929178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LSL7IGJCKA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.80973, - 48.929178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LSL7IGJCKA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149838, - 49.004524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HYNZH5Z54R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.149838, - 49.004524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "HYNZH5Z54R", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.765131, - 49.108475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LXEN3QKGGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.765131, - 49.108475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LXEN3QKGGW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.399309, - 49.160816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Q8JNTUN4KO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.399309, - 49.160816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Q8JNTUN4KO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.351417, - 49.318889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Q7EG4SVFR8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869728, - 49.242004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "CTHD3M2P9Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.545198, - 49.195198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LJYDD69MZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422221, - 49.128597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RJC5UJDFHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838209, - 48.83251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "O0GXWLZLG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.350859, - 49.150547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "G7U2LCCD4Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.349523, - 49.137749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LJ98RD5Z2B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.349523, - 49.137749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LJ98RD5Z2B", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355094, - 49.140018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NWNXQPH8TD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.355094, - 49.140018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NWNXQPH8TD", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.101562, - 49.320122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NBKCJUXTTW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.101562, - 49.320122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NBKCJUXTTW", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.079796, - 48.975983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MQRZ3VP5TF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.079796, - 48.975983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MQRZ3VP5TF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.739149, - 49.02071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KWSB5QN7ZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.739149, - 49.02071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "KWSB5QN7ZK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753121, - 49.002502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "S0QPPXPGJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753121, - 49.002502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "S0QPPXPGJG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35496471, - 49.32043809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UX6T6V86EB", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.545198, - 49.195198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "LJYDD69MZG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35496471, - 49.32043809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UX6T6V86EB", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.883248, - 48.893047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OIGASENV23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.883248, - 48.893047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OIGASENV23", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269149, - 49.408573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "E4PPW00CLV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.269149, - 49.408573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "E4PPW00CLV", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.419354, - 49.024189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "H9D6ILYVTS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.419354, - 49.024189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "H9D6ILYVTS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369945, - 49.325378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "L7FSMQ3K4U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.369945, - 49.325378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "L7FSMQ3K4U", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.84048, - 48.937435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QM29QD00GP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.84048, - 48.937435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QM29QD00GP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29001, - 49.108196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GH4NB90TR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.29001, - 49.108196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GH4NB90TR9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.351417, - 49.318889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Q7EG4SVFR8", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35496471, - 49.32043809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UX6T6V86EB", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.422221, - 49.128597 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RJC5UJDFHM", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197402, - 49.287834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JX4EPALWZ9", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.224748, - 49.182022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OW2ZNJNSGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.224748, - 49.182022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "OW2ZNJNSGE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.257186, - 49.277668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SWIRJOHWIU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.257186, - 49.277668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SWIRJOHWIU", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.258216, - 49.288376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ULAU7GGFK3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.258216, - 49.288376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ULAU7GGFK3", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.250781, - 49.278812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RKAVXVKURO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.250781, - 49.278812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RKAVXVKURO", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.411662, - 48.872952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EKPWNBEKEL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.411662, - 48.872952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EKPWNBEKEL", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.186472, - 49.285782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VRSXXFSM8G", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.186472, - 49.285782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VRSXXFSM8G", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197402, - 49.287834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "JX4EPALWZ9", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753076, - 49.34211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ES3CPUZTN9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405064, - 49.020981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Q7PXNU5TGT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.753076, - 49.34211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "ES3CPUZTN9", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51847393, - 48.86885129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "O5K3TST9TA", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51847393, - 48.86885129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "O5K3TST9TA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.51847393, - 48.86885129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "O5K3TST9TA", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.242004, - 48.96925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RH6ES7OMSP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.259154, - 49.23476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GHMUTKEBFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.259154, - 49.23476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GHMUTKEBFR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471729, - 49.199406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BKNQO1ST1J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.471729, - 49.199406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "BKNQO1ST1J", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.476986, - 49.205502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VRHCX96IT0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.476986, - 49.205502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "VRHCX96IT0", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.838209, - 48.83251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "O0GXWLZLG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371768, - 49.138321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UW8EXZVJSE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405064, - 49.020981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "Q7PXNU5TGT", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.242004, - 48.96925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "RH6ES7OMSP", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2015-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405121, - 49.023678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TTTLWP8ERC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.768018, - 48.920078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XJGG1BX1BV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371768, - 49.138321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "UW8EXZVJSE", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.405121, - 49.023678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "TTTLWP8ERC", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373516, - 49.254955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QTJUNHZSQB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.373516, - 49.254955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QTJUNHZSQB", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20465, - 49.279522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PMGS18OQBS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.082768, - 49.136223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EINYNUPISK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.082768, - 49.136223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "EINYNUPISK", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073146, - 49.071609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MNMLPFSE3R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073146, - 49.071609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MNMLPFSE3R", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.317765, - 49.178341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MRZST8CYGX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.317765, - 49.178341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "MRZST8CYGX", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.318416, - 49.172173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GTOZBG9FBP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.318416, - 49.172173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "GTOZBG9FBP", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.20465, - 49.279522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "PMGS18OQBS", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.009537, - 49.14109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QETEMVQZCG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.357187, - 49.19585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SRFJICA7UF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567159, - 49.121574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "X76NRT9OK4", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.009537, - 49.14109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QETEMVQZCG", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.242383, - 49.198738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NJAYNI3IS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.242383, - 49.198738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "NJAYNI3IS5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.357187, - 49.19585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "SRFJICA7UF", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.567159, - 49.121574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "X76NRT9OK4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.167836, - 49.116592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QE0UDZRZSN", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.167836, - 49.116592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "QE0UDZRZSN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073741, - 48.924759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DKNJSCFR5M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.073741, - 48.924759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "DKNJSCFR5M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.768018, - 48.920078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200045938", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Mobisdec", - "ref": "XJGG1BX1BV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18917, - 43.5408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Fontenilles", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2259, - 43.533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UXRGDF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2259, - 43.533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UXRGDF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18917, - 43.5408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Fontenilles", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35641, - 43.7845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VVKNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61735, - 43.5075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "CHTQTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61735, - 43.5075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "CHTQTA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55905, - 43.5178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WQFNLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.658565, - 42.9708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "KYHUKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.658565, - 42.9708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "KYHUKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.55905, - 43.5178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WQFNLH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53181, - 43.3139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UBBRPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74656, - 43.0484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GSXHEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74656, - 43.0484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GSXHEQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35633, - 43.424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BSZNXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35633, - 43.424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BSZNXE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53181, - 43.3139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UBBRPV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64527, - 42.9147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "CFCFDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.64527, - 42.9147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "CFCFDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08348, - 43.7146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "NRYGLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38989, - 43.8399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UKUUQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.08348, - 43.7146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "NRYGLD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38989, - 43.8399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UKUUQS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53437, - 43.5306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Labegeautan", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32192, - 43.5146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WCKYQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.32192, - 43.5146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WCKYQX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65462, - 43.5613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HKTRMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53124, - 43.6786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HKTWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38962, - 43.4141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EJLYVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38962, - 43.4141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EJLYVF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16776, - 43.302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SFQDKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16776, - 43.302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SFQDKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.587374, - 43.0393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BDSPXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.587374, - 43.0393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BDSPXY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39608, - 43.4528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VDUUDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39608, - 43.4528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VDUUDE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53437, - 43.5306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Labegeautan", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2355, - 43.5993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HWUTQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.2355, - 43.5993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HWUTQJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27251, - 43.5777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "PSBNGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27251, - 43.5777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "PSBNGZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29456, - 3.7682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "QRKBCC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29456, - 3.7682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "QRKBCC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11114, - 43.3222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "NPGJDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11114, - 43.3222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "NPGJDV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6839, - 43.3901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "AMFDJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6839, - 43.3901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "AMFDJR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.35641, - 43.7845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VVKNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86942, - 43.1077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JGVGCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53124, - 43.6786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HKTWHF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49132, - 43.5318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TXSCTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56636, - 43.5063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GLTPXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56636, - 43.5063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GLTPXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.86942, - 43.1077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JGVGCS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62402, - 43.0342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "FVTRXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.62402, - 43.0342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "FVTRXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591993, - 42.7894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "PBFCNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.591993, - 42.7894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "PBFCNZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78432, - 43.3666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EFDJJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78432, - 43.3666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EFDJJV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49132, - 43.5318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TXSCTU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47748, - 43.3508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ATMKAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49984, - 43.5146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GHPTEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47748, - 43.3508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ATMKAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.882365, - 43.2166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SNAMKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.882365, - 43.2166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SNAMKZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38218, - 43.3521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Auribcime", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38218, - 43.3521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Auribcime", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8006, - 43.0147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "aspect", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8006, - 43.0147 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "aspect", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.667604, - 42.9738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "AQCTJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.667604, - 42.9738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "AQCTJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02102, - 43.7379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XNZPHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.60842, - 43.8004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TSMEXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.60842, - 43.8004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TSMEXT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52673, - 43.1917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JSYUTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.52673, - 43.1917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JSYUTY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.49984, - 43.5146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GHPTEX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22489, - 43.2959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UWQHJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22489, - 43.2959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UWQHJA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75551, - 43.5312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VZFZTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75551, - 43.5312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VZFZTP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.25396, - 43.3436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "QJMSEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.25396, - 43.3436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "QJMSEM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63377, - 43.2839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TSZVVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63377, - 43.2839 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TSZVVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05059, - 43.7286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "cadours", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.05059, - 43.7286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "cadours", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63193, - 43.7791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ZJFBFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63193, - 43.7791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ZJFBFZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19896, - 43.7052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XUVKYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19896, - 43.7052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XUVKYK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97132, - 43.1764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Boussensecol", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.97132, - 43.1764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Boussensecol", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.648923, - 43.2898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GUXVRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.648923, - 43.2898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GUXVRY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40547, - 43.7795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "AJUWUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.40547, - 43.7795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "AJUWUG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.02102, - 43.7379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XNZPHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65462, - 43.5613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HKTRMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18005, - 43.7425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "PWJRPS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21608, - 43.4666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ZJVBJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31795, - 43.3307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EBSQJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17848, - 43.5144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "DFNPAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17848, - 43.5144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "DFNPAD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.728788, - 43.1101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VTFJDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.728788, - 43.1101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VTFJDY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13566, - 43.2799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JJBMJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.13566, - 43.2799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JJBMJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61002, - 43.5423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UNUUZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.61002, - 43.5423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UNUUZP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.21608, - 43.4666 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ZJVBJM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14543, - 43.5284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XPUVZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03756, - 43.3429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HBDQVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14543, - 43.5284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XPUVZU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52423, - 43.6649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SPHLUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.52423, - 43.6649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SPHLUS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36462, - 43.5001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HCREGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.36462, - 43.5001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HCREGP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1961, - 43.257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ZFDBZE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1961, - 43.257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "ZFDBZE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11693, - 43.4119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "YURPYW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11693, - 43.4119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "YURPYW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47782, - 43.5484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BJUMFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31795, - 43.3307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EBSQJH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14609, - 43.4918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "MYVFWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.14609, - 43.4918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "MYVFWU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7886, - 42.9847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SJTZZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18005, - 43.7425 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "PWJRPS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.50365, - 43.8649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UDMJKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.50365, - 43.8649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UDMJKD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71702, - 43.3975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "KWFNTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.71702, - 43.3975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "KWFNTQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4444, - 43.5259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "vieilletoul", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4444, - 43.5259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "vieilletoul", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66252, - 43.6578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WNMVMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.66252, - 43.6578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WNMVMD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4464, - 43.4331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BSNARD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4464, - 43.4331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BSNARD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70622, - 43.0962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SDKRWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.70622, - 43.0962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SDKRWE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58466, - 43.0291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XEBJZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58466, - 43.0291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "XEBJZZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95573, - 43.0164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "DBWUFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.95573, - 43.0164 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "DBWUFY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67391, - 43.5116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UCRLEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67391, - 43.5116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "UCRLEP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31135, - 43.4989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Seyssesegl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7886, - 42.9847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SJTZZY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47782, - 43.5484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BJUMFP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31135, - 43.4989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Seyssesegl", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03756, - 43.3429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HBDQVG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83871, - 43.3809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EVEHSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74389, - 43.0935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "NXQUHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.74389, - 43.0935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "NXQUHM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29722, - 43.723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Mervillealou", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29722, - 43.723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Mervillealou", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37474, - 43.2247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Massabrac", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.37474, - 43.2247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Massabrac", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0118, - 43.2001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HQDVPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0118, - 43.2001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "HQDVPR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24848, - 43.3581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JMECMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.24848, - 43.3581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "JMECMY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22182, - 43.4301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VXNBPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22946, - 43.6919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WTLBXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22182, - 43.4301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VXNBPK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06589, - 43.2811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TWTEDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06589, - 43.2811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TWTEDH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29477, - 43.398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Lefaugafete", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.29477, - 43.398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "Lefaugafete", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.26232, - 43.3967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "lavernosemair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.26232, - 43.3967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "lavernosemair", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11904, - 43.2552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VUSGRP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30224, - 43.5628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SCPPWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.11904, - 43.2552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "VUSGRP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22946, - 43.6919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WTLBXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.83871, - 43.3809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EVEHSU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59226, - 43.717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "FHPGXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62286, - 43.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WUKNSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38719, - 43.4798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GTTUTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59226, - 43.717 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "FHPGXB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.38719, - 43.4798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "GTTUTH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39033, - 43.5069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BMJCXM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.39033, - 43.5069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "BMJCXM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17716, - 43.3211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "YKUDXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46728, - 43.7054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SSDAJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.46728, - 43.7054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SSDAJP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27554, - 43.3581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TDZVPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.27554, - 43.3581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "TDZVPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17716, - 43.3211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "YKUDXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.30224, - 43.5628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "SCPPWG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57109, - 43.0849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EFRPWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.57109, - 43.0849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "EFRPWM", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53011, - 43.7671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "CLHEGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53011, - 43.7671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "CLHEGY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23037, - 43.2099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "montesquespla", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.23037, - 43.2099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "montesquespla", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62286, - 43.3577 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "WUKNSS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48099, - 43.7151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "MBUWWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.48099, - 43.7151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "owner:ref:FR:SIREN": "200075240", - "email": "web@freshmile.com", - "phone": "33369246732", - "network": "Freshmile", - "ref": "MBUWWA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.934108, - 43.485077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.966343, - 43.54985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.966343, - 43.54985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939531, - 43.505989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.934108, - 43.485077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939531, - 43.505989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.022205, - 43.554817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.997377, - 43.60107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.015534, - 43.609589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.997377, - 43.60107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.037986, - 43.587605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.037986, - 43.587605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.015534, - 43.609589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998574, - 43.580826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.022205, - 43.554817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998574, - 43.580826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.807771, - 43.799503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971852, - 43.54916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943561, - 43.796143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.122704, - 43.825058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.989127, - 43.701473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.989127, - 43.701473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.807771, - 43.799503 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.731209, - 43.77903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.731209, - 43.77903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.977588, - 43.720795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.977588, - 43.720795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.972588, - 43.680862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.972588, - 43.680862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005572, - 43.674377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005572, - 43.674377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971852, - 43.54916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.926369, - 43.654064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.077683, - 43.571644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.073825, - 43.569656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.073825, - 43.569656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04891, - 43.665592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04891, - 43.665592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.043364, - 43.668011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.043364, - 43.668011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.926369, - 43.654064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.122704, - 43.825058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944208, - 43.654076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944208, - 43.654076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.911085, - 43.639103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.911085, - 43.639103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.936605, - 43.640907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.936605, - 43.640907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.077683, - 43.571644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943561, - 43.796143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.063297, - 43.718616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.063297, - 43.718616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12692, - 43.656189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*51*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.139475, - 43.637203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.139475, - 43.637203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120687, - 43.658474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120687, - 43.658474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.056048, - 43.57943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.056048, - 43.57943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.072232, - 43.564846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.072232, - 43.564846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703947, - 43.773846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932813, - 43.637276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006912, - 43.549686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.008748, - 43.551323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.008748, - 43.551323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.123361, - 43.583973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*10*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.076204, - 43.605541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.076204, - 43.605541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.952294, - 43.632511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.952294, - 43.632511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.912976, - 43.639542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.912976, - 43.639542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927089, - 43.656872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927089, - 43.656872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006912, - 43.549686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.10996, - 43.568874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01392, - 43.5569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01392, - 43.5569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120677, - 43.580116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120677, - 43.580116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92641, - 43.594131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92641, - 43.594131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.10996, - 43.568874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.985467, - 43.667213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.053818, - 43.575954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.053818, - 43.575954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005574, - 43.562817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005574, - 43.562817 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.985467, - 43.667213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932813, - 43.637276 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030538, - 43.54903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030538, - 43.54903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.856857, - 43.647991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.856857, - 43.647991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941274, - 43.547829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941274, - 43.547829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.945192, - 43.534256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.945192, - 43.534256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793374, - 43.728943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793374, - 43.728943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.858089, - 43.843212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.858089, - 43.843212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.728566, - 43.846939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.728566, - 43.846939 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.703947, - 43.773846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.842196, - 43.629398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.947942, - 43.580189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.947942, - 43.580189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.002274, - 43.550552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.002274, - 43.550552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.074646, - 43.61813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.842196, - 43.629398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.913658, - 43.607716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.913658, - 43.607716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.920399, - 43.656429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.920399, - 43.656429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.958667, - 43.64222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.958667, - 43.64222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.025539, - 43.553686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.032011, - 43.548501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.032011, - 43.548501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.038457, - 43.543026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.038457, - 43.543026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941249, - 43.52533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.941249, - 43.52533 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939465, - 43.521552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.939465, - 43.521552 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944397, - 43.487486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.944397, - 43.487486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030741, - 43.624772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030741, - 43.624772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030741, - 43.624772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.030741, - 43.624772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.97701, - 43.643076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.97701, - 43.643076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.025539, - 43.553686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.948066, - 43.567243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.133592, - 43.628931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005276, - 43.570099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.005276, - 43.570099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096315, - 43.628653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.096315, - 43.628653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.091817, - 43.595834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.091817, - 43.595834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.118111, - 43.589299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.948066, - 43.567243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.021575, - 43.575086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.021575, - 43.575086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*106*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.922162, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.922162, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.118111, - 43.589299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.133592, - 43.628931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.121963, - 43.70119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.121963, - 43.70119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.927584, - 43.653981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*129*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969609, - 43.621304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*130*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.125101, - 43.573163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.955042, - 43.607211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*121*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92296, - 43.651211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.92296, - 43.651211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*122*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.000926, - 43.549382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.000926, - 43.549382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.125101, - 43.573163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.959449, - 43.552794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*126*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.045228, - 43.624069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.045228, - 43.624069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007241, - 43.642086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007241, - 43.642086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.039275, - 43.621956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.039275, - 43.621956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007235, - 43.640324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.007235, - 43.640324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875867, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875867, - 43.655693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.863265, - 43.888893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.863265, - 43.888893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.929529, - 43.592361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.929529, - 43.592361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875872, - 43.639107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.875872, - 43.639107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.106864, - 43.686066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.847364, - 43.700356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.973192, - 43.620224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*66*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971394, - 43.61684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*67*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12197, - 43.600079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.12197, - 43.600079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120866, - 43.578243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.120866, - 43.578243 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.094443, - 43.627628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.054662, - 43.62566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.094443, - 43.627628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.099003, - 43.685253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.099003, - 43.685253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.106864, - 43.686066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.873651, - 43.638214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.873651, - 43.638214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793363, - 43.650307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.793363, - 43.650307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94775, - 43.550339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94775, - 43.550339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94775, - 43.550339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.94775, - 43.550339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*92*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932883, - 43.620566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.932883, - 43.620566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.892531, - 43.64505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.892531, - 43.64505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.984026, - 43.568851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.984026, - 43.568851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.054662, - 43.62566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.847364, - 43.700356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.993788, - 43.569118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006267, - 43.576397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016371, - 43.577526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.016371, - 43.577526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01581, - 43.569206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.01581, - 43.569206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998012, - 43.577129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.998012, - 43.577129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.968254, - 43.566551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.993788, - 43.569118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.006267, - 43.576397 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.018548, - 43.575386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.018548, - 43.575386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.968254, - 43.566551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "240600585", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "WIIIZ", - "ref": "FR*SOD*S*WIIZ*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.923522, - 49.2444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.522627, - 46.775898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.684731, - 47.852405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE415600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.183078, - 43.985279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE431500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402639, - 48.23192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE413800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.171845, - 49.215116 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE432400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.274148, - 49.167886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE414900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.109707, - 47.032073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE412400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.623059, - 45.196766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE403700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.010984, - 47.223166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE410200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.245204, - 43.334659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE401800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.06949, - 45.875816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.623299, - 48.126677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE404200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187398, - 48.273996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE436000", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.222737, - 47.815173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE432500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.253033, - 44.870544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE432600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-01", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.197267, - 47.974493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE412600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.103061, - 48.908862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.418951, - 43.585904 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE405200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.420473, - 43.586775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.584799, - 43.418629 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598593, - 43.42185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22454, - 47.813445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.623271, - 45.276249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE412500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.212795, - 45.611787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE410300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.225917, - 45.850722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE421600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045602, - 47.27199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE453800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.501811, - 47.30968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.631368, - 47.166119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE101300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.10745, - 47.030768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE412300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.721676, - 48.264407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-24", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542194, - 43.176909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE414700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-10", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.131556, - 47.4185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE437800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.60966, - 44.171306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE432700", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.158265, - 45.548788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.755607, - 50.167331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE407900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.06931, - 50.225516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.334795, - 45.169865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE432300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387813, - 47.664023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE407800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.387757, - 47.665885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420088, - 46.314092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.416918, - 46.313059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.547145, - 49.614324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.545844, - 49.614343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE431900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.411364, - 46.064297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE412700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.362753, - 46.497639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE438700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240714, - 47.094675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE416100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0365, - 43.592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE403200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.990385, - 43.423878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE404500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4908417, - 46.116638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE431200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417075, - 46.751937 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE410100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.417606, - 46.751623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE431800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.012515, - 49.204151 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE438500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.578674, - 48.467261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE126500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.580008, - 48.468782 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE126400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-26", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.70479, - 46.850652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE448900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.229353, - 44.286522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE414000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7988237, - 50.926644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE439700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.543044, - 43.178103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE414800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.134694, - 47.41925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.277238, - 49.166932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE417100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.987548, - 48.566391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186773, - 49.247541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE437700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.918671, - 49.242974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE401700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-10", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5485168, - 49.089259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE448300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.166865, - 47.807101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE437700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.16809, - 47.803507 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-11", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.053255, - 50.54921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912861, - 44.236045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE449000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.307799, - 49.366191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE448300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-04", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.492422, - 45.188934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE437700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889573, - 44.024304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7669235, - 46.134233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE402500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.703626, - 44.004071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE405300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.700191, - 43.999633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE101200", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.776985, - 47.475422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE423400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0977824, - 48.225594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE410000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.827989, - 45.276404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE412900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.156463, - 45.547641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE410400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-20", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.961812, - 46.09619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.118014, - 46.573538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.508419, - 49.119802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE413700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-30", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.50902, - 49.118201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE417600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5866803, - 46.378027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE438600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.153525, - 45.660128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE416900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451011, - 43.413836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.846994, - 42.578429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE413100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.848341, - 42.577784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE413200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622302, - 48.125475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE404100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.089269, - 43.21589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE438900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.245628, - 43.337933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE401900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-15", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.598651, - 45.610095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825571, - 45.275563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE449000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.585323, - 50.826461 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE431700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.929976, - 45.673865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.865081, - 46.421048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE438800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.186759, - 44.404918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.037132, - 47.504384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE416800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.693474, - 48.09518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE404400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894038, - 45.8899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE404000", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-10", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.894515, - 45.88437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE421500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-05-21", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.308488, - 43.914901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE403500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78134, - 44.513898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE403600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.983572, - 43.65096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE435900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-19", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78082, - 44.515143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.723115, - 44.21656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.63404, - 48.992862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440200", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-08", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.91204, - 43.922931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732409, - 44.194832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE440300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.720788, - 48.263874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE433500", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.366838, - 46.701436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE124800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378795, - 50.571808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE437900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.586605, - 44.369754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE459400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.491055, - 47.500299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408900", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.641624, - 43.074958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE446600", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-10", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.070508, - 45.843868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE403800", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.378714, - 46.296171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE101400", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-25", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.371119, - 46.701836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE409400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-28", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.701054, - 45.13792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE404300", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-16", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.524313, - 45.030881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE439100", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-23", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.525098, - 45.030878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE433400", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.859723, - 47.948583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IONITY", - "owner:ref:FR:SIREN": "838436145", - "email": "info@ionity.eu", - "phone": "33187210891", - "network": "IONITY GMBH", - "ref": "FRIONE408700", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287592, - 48.862725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "La jabotte", - "owner:ref:FR:SIREN": "440591782", - "email": "info@jabotte.com", - "network": "La jabotte", - "ref": "01F52RT5T5C8MK3VG25J93RKKE", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 7:30-12:00,Mo-Su 15:00-20:00", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9187218809509474, - 49.875167008880716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OVERCHEM", - "owner:ref:FR:SIREN": "328170113", - "email": "bornes.overchem@laposte.net", - "network": "OVERCHEM", - "ref": "EVB-P20151643", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:30", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9187218809509474, - 49.875167008880716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OVERCHEM", - "owner:ref:FR:SIREN": "328170113", - "email": "bornes.overchem@laposte.net", - "network": "OVERCHEM", - "ref": "EVB-P20151604", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:30", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9187218809509474, - 49.875167008880716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OVERCHEM", - "owner:ref:FR:SIREN": "328170113", - "email": "bornes.overchem@laposte.net", - "network": "OVERCHEM", - "ref": "EVB-P20151599", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:30", - "start_date": "2021-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0100812, - 43.6087505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAP LABS FRANCE", - "owner:ref:FR:SIREN": "419855127", - "email": "gerald.seiler@sap.com", - "phone": "0681167047", - "network": "SAP LABS FRANCE", - "ref": "FR*SLF*ESAP*MOUGINS*16*3", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15578, - 49.30327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE93", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.452088, - 49.101689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659175, - 49.293963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE123", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929488, - 48.74251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE122", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929488, - 48.74251 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE121", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.483316, - 49.09347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE120", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.483316, - 49.09347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE119", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.530081, - 49.074712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE118", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.530081, - 49.074712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE117", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.53010287, - 49.0747562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE116", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.530102, - 49.0747562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE115", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.187305, - 49.248609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE114", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.187305, - 49.248609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE113", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219454, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE112", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.219454, - 49.324463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE111", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49855, - 49.230692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE110", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.49855, - 49.230692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE109", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.356333, - 49.35987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE108", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.356333, - 49.35987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE107", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71108, - 48.824326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE106", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.71108, - 48.824326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE105", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.584992, - 49.243902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE104", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.584992, - 49.243902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE103", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.913432, - 48.835912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE102", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.913432, - 48.835912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE101", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.485049, - 49.092874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE100", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.485049, - 49.092874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE99", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.419905, - 49.062843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE98", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.419905, - 49.062843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE97", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.513936, - 49.351758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE96", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.513936, - 49.351758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE95", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.659175, - 49.293963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE124", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673576, - 49.153238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.951704, - 49.293602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE156", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.452088, - 49.101689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE126", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.951704, - 49.293602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.709275, - 49.108212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE154", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.709275, - 49.108212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE153", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20844, - 49.25644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.20844, - 49.25644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE151", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.761226, - 49.276345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE150", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.761226, - 49.276345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE149", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.597432, - 49.089329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE148", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.597432, - 49.089329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.273518, - 48.906015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.273518, - 48.906015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE145", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.317617, - 49.139582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE144", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.317617, - 49.139582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE143", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34918, - 49.157966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE142", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34918, - 49.157966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE141", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34918, - 49.157966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE140", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34918, - 49.157966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE139", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150262, - 49.019161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE138", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.150262, - 49.019161 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.153063, - 49.026011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.153063, - 49.026011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605735, - 49.158001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605735, - 49.158001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.485499, - 49.09016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE132", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.485499, - 49.09016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420738, - 49.060499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE130", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420738, - 49.060499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE129", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605988, - 49.093379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.605988, - 49.093379 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.15578, - 49.30327 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE94", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.556744, - 49.419466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE59", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.197021, - 49.271924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE92", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.712047, - 49.196627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE42", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.382145, - 49.444076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE56", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.382145, - 49.444076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE55", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.514153, - 49.35304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE54", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.514153, - 49.35304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.601421, - 49.090911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE52", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.601421, - 49.090911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE51", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.221452, - 49.197647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE50", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.221452, - 49.197647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE49", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.515229, - 49.35841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE48", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.515229, - 49.35841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE47", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45836, - 49.141649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE46", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45836, - 49.141649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE45", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.457547, - 49.135919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE44", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.457547, - 49.135919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE43", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.712047, - 49.196627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE41", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.197021, - 49.271924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE91", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070287, - 48.86549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE40", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.070287, - 48.86549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE39", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.721077, - 49.19387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE38", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.721077, - 49.19387 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE37", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.341375, - 49.164969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE36", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.341375, - 49.164969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE35", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.376949, - 49.24707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE34", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.376949, - 49.24707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE33", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.96432, - 48.83254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE32", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.96432, - 48.83254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE31", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.518561, - 49.35578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.518561, - 49.35578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE29", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.918076, - 48.836177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE27", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.596704, - 49.087252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE159", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.489306, - 49.092359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE57", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.489306, - 49.092359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE58", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.556744, - 49.419466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE60", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.479175, - 49.399683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE61", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06483, - 49.223315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.06483, - 49.223315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE89", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.224898, - 49.195263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE88", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.224898, - 49.195263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE87", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.747974, - 48.907764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE86", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.747974, - 48.907764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE85", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.344569, - 49.34592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE84", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.344569, - 49.34592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE83", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.397276, - 49.417993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE82", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.397276, - 49.417993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE81", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.592528, - 49.088719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.592528, - 49.088719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE79", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.266925, - 49.335297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE78", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.266925, - 49.335297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE77", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.156333, - 49.319537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE76", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.156333, - 49.319537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE75", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41963, - 48.86551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE74", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41963, - 48.86551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE73", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43984, - 49.27973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE72", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.43984, - 49.27973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE71", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167038, - 49.213922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE70", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.167038, - 49.213922 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE69", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16539, - 49.21079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE68", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16539, - 49.21079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE67", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17084, - 49.211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE66", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17084, - 49.211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE65", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080285, - 48.871683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE64", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.080285, - 48.871683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE63", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.479175, - 49.399683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE62", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.673576, - 49.153238 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.918076, - 48.836177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE28", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.596704, - 49.087252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE160", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.612974, - 49.303396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE246", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41371, - 49.245858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE260", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.41371, - 49.245858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE259", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.057957, - 48.758803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE258", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.057957, - 48.758803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929944, - 48.738663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE256", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929944, - 48.738663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE255", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929616, - 48.74003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE254", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.929616, - 48.74003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE253", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.928988, - 48.740485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE252", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.928988, - 48.740485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE251", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.807758, - 48.7707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE250", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.807758, - 48.7707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE249", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.777517, - 49.278682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE248", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.777517, - 49.278682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE247", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.612974, - 49.303396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE245", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.401083, - 49.23773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE262", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.546146, - 48.758803 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE244", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.546146, - 49.185342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE243", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.224221, - 49.275684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE242", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.224221, - 49.275684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE241", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.941327, - 48.964562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE240", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.941327, - 48.964562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE239", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.941474, - 48.960693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE238", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.941474, - 48.960693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE237", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.942348, - 48.959934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE236", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.942348, - 48.959934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE235", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.206554, - 49.285445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE234", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.206554, - 49.285445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE233", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03789, - 48.992145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE232", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.03789, - 48.992145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE231", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.401083, - 49.23773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE261", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.157537, - 49.009109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE263", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.962192, - 49.248376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE229", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.934779, - 49.103352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE280", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420204, - 49.246692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE294", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.420204, - 49.246692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE293", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.775525, - 49.080689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE161", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.160346, - 49.024055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE292", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.160346, - 49.024055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE291", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.199589, - 48.770538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE290", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.199589, - 48.770538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE289", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.937233, - 48.962291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE288", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.937161, - 48.962303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE286", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.937161, - 48.962303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE285", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34918, - 49.157966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE284", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34918, - 49.157966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE283", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91013, - 49.150593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE282", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.91013, - 49.150593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE281", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.934779, - 49.103352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.157537, - 49.009109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE264", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.531146, - 49.008319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE278", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.531146, - 49.008319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.480734, - 48.938426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE276", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.480734, - 48.938426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE275", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4435619, - 48.9256673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE274", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4435619, - 48.9256673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE273", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.123976, - 49.017093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE272", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.123976, - 49.017093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE271", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34989, - 49.163115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE270", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.34989, - 49.163115 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE269", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16539, - 49.21079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.16539, - 49.21079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE267", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66299, - 48.946159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE266", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.66299, - 48.946159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE265", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.962192, - 49.248376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE230", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.937233, - 48.962291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE287", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1993813, - 48.7702458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE228", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19461, - 48.778359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE177", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.179005, - 49.320468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE191", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.123975, - 49.017093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE190", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.123975, - 49.017093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE189", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.352788, - 49.174165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE188", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.352788, - 49.174165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE187", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.162429, - 49.047854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE186", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.162429, - 49.047854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.157598, - 49.026481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE184", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.157598, - 49.026481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.136316, - 49.030257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE182", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.136316, - 49.030257 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE181", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17346, - 49.025102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE180", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.17346, - 49.025102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE179", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.19461, - 48.778359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE178", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.781506, - 48.97842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE176", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.931972, - 48.890669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE193", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.781506, - 48.97842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE175", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.704694, - 49.011757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE174", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.704694, - 49.011757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE173", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40543, - 49.048847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE172", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.40543, - 49.048847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE171", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.382675, - 49.013925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.382675, - 49.013925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE169", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.612249, - 49.23479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.612249, - 49.23479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208506, - 49.25786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE165", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.975642, - 49.260914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.975642, - 49.260914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE163", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.775525, - 49.080689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE162", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1993813, - 48.7702458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE227", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.179005, - 49.320468 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE192", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.208506, - 49.25786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE166", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.931972, - 48.890669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE194", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.478814, - 49.29076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE212", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.939257, - 49.266036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE226", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3175225, - 49.1394202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE195", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.939257, - 49.266036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE225", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622742, - 49.390881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE224", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.817924, - 49.35421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE222", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.817924, - 49.35421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE221", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.120187, - 49.140422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE220", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.120187, - 49.140422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE219", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22331, - 49.231282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE218", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.22331, - 49.231282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE217", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217491, - 49.27201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE216", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.217491, - 49.27201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE215", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.719094, - 49.233117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE214", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.719094, - 49.233117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE213", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.622742, - 49.390881 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE223", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.478814, - 49.29076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE211", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.874672, - 49.299502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE204", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.922083, - 49.290671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE210", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.128076, - 49.021025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE200", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.128076, - 49.021025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE199", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087785, - 49.006973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE202", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.874672, - 49.299502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE203", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.087785, - 49.006973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE201", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2016-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.525036, - 49.467521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE205", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.525036, - 49.467521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE206", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.731554, - 49.378795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE207", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.731554, - 49.378795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE208", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.922083, - 49.290671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE209", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3175225, - 49.1394202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIEGE 27", - "owner:ref:FR:SIREN": "252701974", - "email": "pascal.lhermitte@siege27.fr", - "phone": "0232398200", - "network": "SIEGE196", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16177, - 48.622033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145994, - 48.649043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*36*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145994, - 48.649043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145994, - 48.649043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*36*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.16177, - 48.622033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17863, - 48.666908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17863, - 48.666908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.194121, - 48.649816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.194121, - 48.649816 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.252347, - 48.70712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.252347, - 48.70712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145994, - 48.649043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.77921, - 49.289143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175381, - 48.689914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175381, - 48.689914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175381, - 48.689914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175381, - 48.689914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.77921, - 49.289143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.900021, - 49.311222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.900021, - 49.311222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75571, - 49.388744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.75571, - 49.388744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.804458, - 49.321175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.804458, - 49.321175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.092196, - 48.618467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.905749, - 49.366657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.905749, - 49.366657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.092196, - 48.618467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.497805, - 48.588446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.099536, - 48.614155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489047, - 48.598501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.694515, - 48.487852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902419, - 49.415974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.694515, - 48.487852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.500003, - 48.591825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.500003, - 48.591825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.503267, - 48.59336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.503267, - 48.59336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*52*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489549, - 48.591508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489549, - 48.591508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.495991, - 48.592458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.495991, - 48.592458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.489047, - 48.598501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.497805, - 48.588446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.099536, - 48.614155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.468064, - 48.562346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.468064, - 48.562346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.188514, - 48.684557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*46*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.188514, - 48.684557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*46*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.188514, - 48.684557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.188514, - 48.684557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.183827, - 48.695024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.183827, - 48.695024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.185137, - 48.692368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.185137, - 48.692368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*43*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.185137, - 48.692368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.185137, - 48.692368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*43*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.930792, - 49.429157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.173022, - 48.689762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*4*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.902419, - 49.415974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.173022, - 48.689762 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*4*1*_*_", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*4*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*3*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.175165, - 48.690281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*3*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*3*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*3*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*4*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.741943, - 49.293346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*5*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*5*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*4*_*_", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*2*_*_", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.177347, - 48.687977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*2*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17407, - 48.686047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*1*2*_*_", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17407, - 48.686047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*1*2*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17407, - 48.686047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*1*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17407, - 48.686047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*1*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17407, - 48.686047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*1*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.17407, - 48.686047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*1*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.739727, - 48.443202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.196215, - 48.694878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*5*1*_*_", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.196215, - 48.694878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*5*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.225206, - 48.702408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.225206, - 48.702408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.741943, - 49.293346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.834023, - 49.327763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.834023, - 49.327763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.930843, - 49.324322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.930843, - 49.324322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.052047, - 48.883568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.052047, - 48.883568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068884, - 48.842911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.068884, - 48.842911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133857, - 48.699406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.133857, - 48.699406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.199602, - 48.69315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.199602, - 48.69315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.142407, - 48.698059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.142407, - 48.698059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22903, - 48.658569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.22903, - 48.658569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.250865, - 48.702171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*13*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.250865, - 48.702171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.252662, - 48.707504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.252662, - 48.707504 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.180104, - 48.645809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.180104, - 48.645809 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.209852, - 48.694763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*8*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.209852, - 48.694763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*8*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.739727, - 48.443202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.930792, - 49.429157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.607995, - 48.531142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62415, - 48.506082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.651412, - 48.611865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.651412, - 48.611865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732776, - 48.481303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.732776, - 48.481303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691154, - 48.473567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.691154, - 48.473567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.44907, - 48.52959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.44907, - 48.52959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.735212, - 48.444032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.741191, - 48.528566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.741191, - 48.528566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.62415, - 48.506082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.529493, - 48.596794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.897909, - 48.528022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.529493, - 48.596794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729624, - 48.517423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.729624, - 48.517423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.753659, - 48.515558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.753659, - 48.515558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.766798, - 48.509037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.766798, - 48.509037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.749424, - 48.497579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.749424, - 48.497579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.792528, - 48.429512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.792528, - 48.429512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.810074, - 48.412013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.897909, - 48.528022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.891198, - 49.366949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*103*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.655137, - 48.497517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.322902, - 48.468331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*111*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.607995, - 48.531142 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.132647, - 48.771853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRAND NANCY", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.186692, - 48.669613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRAND NANCY", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.186692, - 48.669613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRAND NANCY", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.235897, - 48.651288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRAND NANCY", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.235897, - 48.651288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRAND NANCY", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.601472, - 48.589796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*114*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.601472, - 48.589796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*114*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.500923, - 48.603982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*113*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.500923, - 48.603982 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*113*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167017, - 48.735001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167017, - 48.735001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.322902, - 48.468331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*111*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.891198, - 49.366949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*103*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.322902, - 48.468331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.322902, - 48.468331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145511, - 48.779856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*109*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.145511, - 48.779856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*109*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908144, - 48.545392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*108*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.908144, - 48.545392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*108*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.871263, - 48.651079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*106*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.871263, - 48.651079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*106*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113954, - 48.937585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*105*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113954, - 48.937585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*105*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113954, - 48.937585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*104*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.113954, - 48.937585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*104*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.810074, - 48.412013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.735212, - 48.444032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.655137, - 48.497517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813043, - 48.466942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.79138, - 48.419586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.550392, - 48.463424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.550392, - 48.463424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632634, - 48.519024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.632634, - 48.519024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.541528, - 48.529466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.541528, - 48.529466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.650546, - 48.58364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.650546, - 48.58364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.499564, - 48.567491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.499564, - 48.567491 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.439919, - 48.600135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.439919, - 48.600135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5098, - 48.4952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5098, - 48.4952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4859, - 48.6548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4859, - 48.6548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3871, - 48.5571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.132647, - 48.771853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GRAND NANCY", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.946, - 48.5813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.946, - 48.5813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4086, - 48.5553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4086, - 48.5553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8437, - 48.5895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8437, - 48.5895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8961, - 48.4972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.739262, - 48.447748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.79138, - 48.419586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3871, - 48.5571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.813043, - 48.466942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.622318, - 48.578039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66004, - 48.45428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.566207, - 48.444874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.566207, - 48.444874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.569545, - 48.483286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.569545, - 48.483286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50141, - 48.499449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50141, - 48.499449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451822, - 48.500395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.451822, - 48.500395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.815633, - 48.480022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50647, - 48.584835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.622318, - 48.578039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.50647, - 48.584835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.673311, - 48.569703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.529611, - 48.574109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.815633, - 48.480022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.673311, - 48.569703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.774703, - 48.480564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.529611, - 48.574109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.774703, - 48.480564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.461325, - 48.533034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.461325, - 48.533034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66004, - 48.45428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604733, - 48.539439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604733, - 48.539439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "245400676", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GRAND NANCY", - "ref": "FR*SOD*S*CUGN*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.052629, - 43.829884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PHA", - "owner:ref:FR:SIREN": "313029928", - "email": "contact@pha.fr", - "network": "PHA", - "ref": "01F5DSBVJZZC31QQFGBD9V703S", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "LUN-VEN 08:00-12:30,LUN-VEN 13:30-18:00", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.041201, - 43.815137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAMBUS SARL", - "owner:ref:FR:SIREN": "305206211", - "email": "direction@gambus.fr", - "network": "GAMBUS", - "ref": "01F53GETJK68P92WZKVHQB410M", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "LUN-JEU 08:00-12h00,LUN-JEU 13:00-17:00,VEN 8:00-12,VEN 13:00-16:00", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.88342, - 50.1989359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "GARAGE ZAWIEJA", - "ref": "01F8YH73V8G9RJTD3QKSPN7EHH", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07568, - 45.89067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Avomarks", - "owner:ref:FR:SIREN": "442556452", - "email": "stephane@avomarks.fr", - "phone": "04 50 69 47 52", - "network": "Avomarks", - "ref": "01F8WSV27RK8ZG8QTW59R62GXJ", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1443631, - 50.7530166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "ETANCHEITE PARTICULIERS ET INDUSTRIES", - "ref": "01F8T2FRWRBSCX49CB10H85MSR", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9801575, - 50.3681097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "LA FERME DE LA MOTTE", - "ref": "01F859RCGP1001KQFE2HT52P08", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.76, - 45.16 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "404675878", - "email": "exploitation@freshmile.com", - "phone": "03 68 78 14 35", - "network": "SATORIZ GRENOBLE ROCADE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.49, - 45.67 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AQUA LOISIRS", - "owner:ref:FR:SIREN": "443891056", - "email": "loisirs.acqua@orange.fr", - "phone": "0474808989", - "network": "AQUA LOISIRS", - "ref": "01F9VBZH9QQ087R6AHJGRZCS32", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-su 08:00-18:00", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61, - 48.85 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ispo france", - "owner:ref:FR:SIREN": "799732292", - "email": "info@ispo-group.com", - "phone": "0390556161", - "network": "Réseau de recharge ISPO FRANCE", - "ref": "01FA86M5NKT9P6C71SQE853AXK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lu-Ve 09:00-12:00,Lu-Ve 14:00-18:00", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61, - 48.85 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ispo france", - "owner:ref:FR:SIREN": "799732292", - "email": "info@ispo-group.com", - "phone": "0390556161", - "network": "Réseau de recharge ISPO FRANCE", - "ref": "01FA86M5NKT9P6C71SQE853AXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lu-Ve 09:00-12:00,Lu-Ve 14:00-18:00", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61, - 48.85 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ispo france", - "owner:ref:FR:SIREN": "799732292", - "email": "info@ispo-group.com", - "phone": "0390556161", - "network": "Réseau de recharge ISPO FRANCE", - "ref": "01FA86M5NKT9P6C71SQE853AXK", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Lu-Ve 09:00-12:00,Lu-Ve 14:00-18:00", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.84, - 48.68 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENTREPRISE ADAM", - "owner:ref:FR:SIREN": "329021760", - "email": "sas.adam@wanadoo.fr", - "phone": "0388962573", - "network": "ENTREPRISE ADAM", - "ref": "01FGHJ43ZN752K332T9ZQ06WE7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.07595, - 49.09977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EDFRAY", - "owner:ref:FR:SIREN": "390478139", - "email": "aurelien@evasion-moto.fr", - "phone": "0683805728", - "network": "BH CAR", - "ref": "01FADS2AAVMMH12VRNGNNYWZP2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "mo-fr 08:00-12:00,mo-fr 14:00-19:00", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5397406236702427, - 48.80759678252247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Daltoner Granville", - "owner:ref:FR:SIREN": "504961152", - "email": "denis.lot@daltoner.fr", - "phone": "0608471175", - "network": "Daltoner Granville", - "ref": "01FNH8RBENK0CX64NN9C35KG0C", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "mo-fr 09:00-12:00,mo-fr 14:00-18:00", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.56, - 46.74 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "le Relais", - "owner:ref:FR:SIREN": "810219006", - "email": "contact@lerelaisdelaperle.fr", - "phone": "0384259552", - "network": "le relais", - "ref": "87e0fb5a-e591-11eb-ba80-0242ac130004", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.57223, - 50.683307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58696, - 50.98144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.579956, - 50.978392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.439028, - 50.854477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.719626, - 50.763358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5112803, - 50.6950541 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.838199, - 50.7047 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371528, - 50.731996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535747, - 50.937502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485827, - 50.821335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2037, - 50.85458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.327481, - 50.865679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.482586, - 50.802375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218332, - 50.906956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-08-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3338, - 50.803349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292657, - 50.953773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.438116, - 50.662418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.435338, - 50.662605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403771613, - 50.692044196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485248, - 50.673799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.732645211404826, - 50.74009832050729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.735218, - 50.729624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.411181453, - 50.8310526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.554092, - 50.776769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.410667, - 50.964838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.588377, - 50.808909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.544553, - 50.71188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.780455, - 50.700998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255397, - 50.83198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466566, - 50.651226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51196, - 50.838903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.671506, - 50.659622 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.538045, - 50.723262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53162, - 50.724579 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.543917, - 50.717873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534213, - 50.720173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.54217, - 50.72863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.533966, - 50.722557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.532066, - 50.714951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539142, - 50.720173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.530926, - 50.732689 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552611, - 50.73027 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.596091, - 50.778912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69124819564, - 50.79972162723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460441, - 50.78763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460441, - 50.78763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.46799, - 50.880845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467585, - 50.883458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212967, - 50.833367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20967, - 50.831585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOUYGUES ENERGIES ET SERVICES", - "owner:ref:FR:SIREN": "200036895", - "email": "support@passpasselectrique.fr", - "phone": "0 805 02 14 80", - "network": "Pass Pass Electrique", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15306, - 49.483216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153293, - 49.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153293, - 49.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153293, - 49.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153177, - 49.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15306, - 49.483216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153177, - 49.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.153177, - 49.48322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.15306, - 49.483216 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SGA Industries", - "owner:ref:FR:SIREN": "304891641", - "email": "contact@sga-automation.com", - "phone": "0232103853", - "network": "Réseau de recharge Sogestran", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2021-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.911452, - 45.839515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427356, - 46.188104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.483527, - 46.238674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.483527, - 46.238674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485976, - 46.174744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485976, - 46.174744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67012069, - 46.3057547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.67012069, - 46.3057547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6307987051364758, - 46.11916513058057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.911452, - 45.839515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6307987051364758, - 46.11916513058057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.908169, - 46.325814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.908169, - 46.325814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7562378, - 46.204309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1752391966838003, - 45.95685385044865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1752391966838003, - 45.95685385044865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427356, - 46.188104 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8728709, - 46.1613543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7562378, - 46.204309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.872105, - 46.168328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.621857810756655, - 46.38979827128929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8728709, - 46.1613543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.757261, - 45.954984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87458, - 46.18066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.87458, - 46.18066 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.872105, - 46.168328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2023-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.852937, - 46.16619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.915143, - 46.13929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.852937, - 46.16619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84716, - 46.182498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.84716, - 46.182498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.889585, - 46.127182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.889585, - 46.127182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.915143, - 46.13929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.621857810756655, - 46.38979827128929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.757261, - 45.954984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2018-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3282017747338646, - 46.18043243312804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4864876938733127, - 46.23622541263118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:17", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6472792580972633, - 46.16018464709621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:19", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6472792580972633, - 46.16018464709621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:20", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.849796138345705, - 45.99788844986339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:21", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.849796138345705, - 45.99788844986339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:22", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0335378347450135, - 45.906877456491365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:24", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.500372319177679, - 46.02618636026654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:25", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.500372319177679, - 46.02618636026654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:26", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2148780297956265, - 46.349311090103754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:27", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2148780297956265, - 46.349311090103754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:28", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0860594190967117, - 46.180882164981234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:29", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0860594190967117, - 46.180882164981234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:30", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7558725880278507, - 45.94935937360538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:31", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.878921, - 46.17376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:32", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.878921, - 46.17376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:33", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3282017747338646, - 46.18043243312804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:00", - "start_date": "2019-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4864876938733127, - 46.23622541263118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:18", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0335378347450135, - 45.906877456491365 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:23", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239653001754647, - 46.19073258470734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:16", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4832416152564285, - 46.17599486200176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:08", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297630254367735, - 45.98220366857867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:01", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239653001754647, - 46.19073258470734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:15", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.756224684351945, - 45.954558314194834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:03", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.756224684351945, - 45.954558314194834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:04", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3670760395894566, - 45.86830223684359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:05", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3670760395894566, - 45.86830223684359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:06", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4832416152564285, - 46.17599486200176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:07", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297630254367735, - 45.98220366857867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:02", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171941051048165, - 45.884709957957774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:09", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5128909982581737, - 46.14672358923505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:11", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5128909982581737, - 46.14672358923505 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:12", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9928695454171546, - 46.35557415488703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:13", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9928695454171546, - 46.35557415488703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:14", - "start_date": "2023-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.171941051048165, - 45.884709957957774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOVIVE_Izivia", - "owner:ref:FR:SIREN": "252309646", - "email": "contact@mobive.fr", - "phone": "969324747", - "network": "Réseau de recharge Creuse", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 00:00-00:10", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8223994, - 45.891181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electriox Groupe", - "owner:ref:FR:SIREN": "753202431", - "email": "groupe@electriox.fr", - "phone": "0472104595", - "network": "Electriox Groupe Station IRVE", - "ref": "01F8FTNQGRJP9Q0HNT5NS7X46E", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1783557363561291, - 45.66573707254592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "352001069", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "I2b54Cy8vKqo9WEj", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3599166241627683, - 45.69499463422594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "521763912", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "4CCKnFCY8U2uylb5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3599526215855915, - 45.695593468232566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "521763912", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "UwSoXsOi5pgnBv6v", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3987681673214218, - 45.81890347412459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "343865937", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "fi7vdCwDjFxo33hy", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4212213179604373, - 45.77393371624896 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211700729", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "xGfWIPAZlN7u8UJo", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8102565057215653, - 45.649438783139665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211702329", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "0DVclECBKGtnYiS6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7065045195933709, - 46.215996601383644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "902039528", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "XyY44xK0AHa1J7UY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1783557363561291, - 45.66573707254592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "352001069", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "I2b54Cy8vKqo9WEj", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3599526215855915, - 45.695593468232566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "521763912", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "17ZCKMgZhiYo711M", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6519199081168063, - 45.63648835730188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211704416", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "vJFchjZUzBsZL49F", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.65387764005573, - 45.630872003921496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211704416", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "5qLx81vZcVOGEK2t", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62630408112066, - 45.747334026242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "833922693", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "VAgkznsuvjrdxV0O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5041785690753205, - 45.82190628951172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211701479", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "6mZpoAbF5sDDkgX3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.275995989093295, - 45.911275008898585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "381032770", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "SH5hm2ErazrPtOSE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62630694441728, - 45.74751971845 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "833922693", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "VAgkznsuvjrdxV0O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.62625527113986, - 45.747376507523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "833922693", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "VAgkznsuvjrdxV0O", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2790864928722, - 45.913211767345 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "520236522", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "cy4MFwyC09BkgYyU", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2774393191812, - 45.914137353729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "520236522", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "lsMbBg9W69bdLlqE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6153411820000854, - 45.71501882195449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211701792", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "8c0GQLN1K6qkMWE1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6153411820000854, - 45.71501882195449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211701792", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "8c0GQLN1K6qkMWE1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5041850689776732, - 45.821925401611395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211701479", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "6mZpoAbF5sDDkgX3", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.300627496124425, - 45.90195661936574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "828245407", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "pfm6SBqsE3WmWTx8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.300627496124425, - 45.90195661936574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "828245407", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "pfm6SBqsE3WmWTx8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7085456582039972, - 45.766535193830144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211703368", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "fBNB5cBnAGB5nFxY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6868473485416821, - 45.63849905619226 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "353634504", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "EbH6KCYFHUQJyn6U", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5025035630102878, - 45.64778425286908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "e-nergyze", - "owner:ref:FR:SIREN": "211702428", - "email": "service.client@e-nergyze.com", - "phone": "186476800", - "network": "e-nergyze", - "ref": "4N63AAlnrEhcABRu", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5108443014957409, - 44.80124139894823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "270 AGENCY", - "owner:ref:FR:SIREN": "538041732", - "email": "contact@270agency.com", - "phone": "0547745020", - "network": "270 AGENCY", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 9:00-18:00, Tu 9:00-18:00, We 9:00-18:00, Th 9:00-18:00, Fr 9:00-18:00", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5108443014957409, - 44.80124139894823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "270 AGENCY", - "owner:ref:FR:SIREN": "538041732", - "email": "contact@270agency.com", - "phone": "0547745020", - "network": "270 AGENCY", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 9:00-18:00, Tu 9:00-18:00, We 9:00-18:00, Th 9:00-18:00, Fr 9:00-18:00", - "start_date": "2021-11-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0655256, - 43.8355022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ALU GRANON", - "owner:ref:FR:SIREN": "323119099", - "email": "cedric.granon@wanadoo.fr", - "network": "ALU GRANON", - "ref": "01F8CNY449635PQP70P14WCRVE", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-SAT 09:00-18:30", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.14269, - 43.88528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SERNAD INVESTISSEMENT", - "owner:ref:FR:SIREN": "450528526", - "email": "SLANTELME@GMAIL.COM", - "phone": "0608639398", - "network": "LE TEMPS DES SECRETS", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287592, - 48.862725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "METALLERIE PERRUT", - "owner:ref:FR:SIREN": "350404380", - "email": "contact@metallerieperrut.fr", - "phone": "0490765190", - "network": "METALLERIE PERRUT", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-18:00", - "start_date": "2021-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.238577, - 44.517525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "accueil-brico.langon@scaso.fr", - "phone": "0557980830", - "network": "BBJ Mazères", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.220807, - 44.205605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558090404", - "network": "Leclerc Mimizan", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.220807, - 44.205605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558090404", - "network": "Leclerc Mimizan", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.220807, - 44.205605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558090404", - "network": "Leclerc Mimizan", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.220807, - 44.205605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558090404", - "network": "Leclerc Mimizan", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.926388, - 44.20274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PLAGECO DISTRIBUTION", - "owner:ref:FR:SIREN": "394121545", - "email": "sylvie.at@scaso.fr", - "phone": "0558830083", - "network": "Leclerc Express Labouheyre", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", - "start_date": "2021-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.254093, - 44.54156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "franck.pothin@scaso.fr", - "phone": "0557980830", - "network": "Centre Auto Leclerc Langon", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.254093, - 44.54156 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LANGON DISTRIBUTION", - "owner:ref:FR:SIREN": "390923175", - "email": "franck.pothin@scaso.fr", - "phone": "0557980830", - "network": "Centre Auto Leclerc Langon", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.843358, - 44.924358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BIARS DISTRIBUTION", - "owner:ref:FR:SIREN": "341055705", - "email": "stephane.henry@scaso.fr", - "phone": "0565102200", - "network": "Leclerc Biars", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.843358, - 44.924358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BIARS DISTRIBUTION", - "owner:ref:FR:SIREN": "341055705", - "email": "stephane.henry@scaso.fr", - "phone": "0565102200", - "network": "Leclerc Biars", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.843358, - 44.924358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BIARS DISTRIBUTION", - "owner:ref:FR:SIREN": "341055705", - "email": "stephane.henry@scaso.fr", - "phone": "0565102200", - "network": "Leclerc Biars", - "ref": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.843358, - 44.924358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BIARS DISTRIBUTION", - "owner:ref:FR:SIREN": "341055705", - "email": "stephane.henry@scaso.fr", - "phone": "0565102200", - "network": "Leclerc Biars", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.918739, - 44.618314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAS Miodis", - "owner:ref:FR:SIREN": "810800268", - "email": "lucas.ribelles@scaso.fr", - "phone": "0556827837", - "network": "Leclerc Mios", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.918739, - 44.618314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAS Miodis", - "owner:ref:FR:SIREN": "810800268", - "email": "lucas.ribelles@scaso.fr", - "phone": "0556827837", - "network": "Leclerc Mios", - "ref": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67021924, - 44.87476787 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "Non concerné", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-19:00", - "start_date": "2022-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P1929472", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P1929472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P1929472", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P2020524", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P1929472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P1929472", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.567508599999986, - 48.52013390000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TENTE SAS", - "owner:ref:FR:SIREN": "973203284", - "email": "tente.bornes@laposte.net", - "network": "TENTE", - "ref": "EVB-P1950568", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-17:00", - "start_date": "2021-05-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.299371, - 48.165438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ville de Riquewihr", - "owner:ref:FR:SIREN": "216802777", - "email": "mairie@riquewihr.fr", - "phone": "0389490910", - "network": "Borne IRVE Riquewihr", - "ref": "01F6P97EN7T7KCMJ44GDQMYTN9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.294091, - 48.167334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ville de Riquewihr", - "owner:ref:FR:SIREN": "216802777", - "email": "mairie@riquewihr.fr", - "phone": "0389490910", - "network": "Borne IRVE Riquewihr", - "ref": "01F6P8C71C4B2XV55S4T3C552Z", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.403327536228296, - 46.08350074095008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAS Lujasy", - "owner:ref:FR:SIREN": "838439180", - "email": "lujasy74@gmail.com", - "phone": "0450970432", - "network": "Intermarché", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:45,Su 08:30-12:45", - "start_date": "2021-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8401120000162585, - 46.26399717713806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Hôtel MACCHI", - "owner:ref:FR:SIREN": "302330246", - "email": "contact@hotelmacchi.com", - "phone": "0450732412", - "network": "Hôtel MACCHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:30", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.04449, - 49.114638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "418031977", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Hotel saint walfrid", - "ref": "01F7QQZ82AF36GR8935SM9H2SQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1315408, - 50.7396999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "0361626161", - "network": "DACIA RONCQ", - "ref": "01FHWQ8RECFE028717E5Y5123P", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7548354193520386, - 48.125067030488154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NW IECharge", - "owner:ref:FR:SIREN": "898270251", - "email": "contact@nw-joules.fr", - "phone": "184605641", - "network": "IECharge France", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7548354193520386, - 48.125067030488154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NW IECharge", - "owner:ref:FR:SIREN": "898270251", - "email": "contact@nw-joules.fr", - "phone": "184605641", - "network": "IECharge France", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7548354193520386, - 48.125067030488154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NW IECharge", - "owner:ref:FR:SIREN": "898270251", - "email": "contact@nw-joules.fr", - "phone": "184605641", - "network": "IECharge France", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7548354193520386, - 48.125067030488154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NW IECharge", - "owner:ref:FR:SIREN": "898270251", - "email": "contact@nw-joules.fr", - "phone": "184605641", - "network": "IECharge France", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7548354193520386, - 48.125067030488154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NW IECharge", - "owner:ref:FR:SIREN": "898270251", - "email": "contact@nw-joules.fr", - "phone": "184605641", - "network": "IECharge France", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.18036, - 14.697624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "484506555", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Petibonum", - "ref": "FR*EZD*E20883, FR*EZD*E20884", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.972756, - 14.601781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "431416288", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "DIGICEL ANTILLES FRANCAISES GUYANE", - "ref": "FR*EZD*E95818, FR*EZD*E95819", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.00386, - 14.607184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "788896082", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Colibri", - "ref": "FR*EZD*E20881, FR*EZD*E20882", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.07342, - 14.60317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "334174190", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Socanparc - Pointe Simon", - "ref": "FR*EZD*E28314, FR*EZD*E28315", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 06:00-20:00,Sa 07:00-14:00", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.06751, - 14.608331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "334174190", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Socanparc - Lafcadio", - "ref": "FR*EZD*E28312, FR*EZD*E28313", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 06:00-20:00,Sa 07:00-14:00", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.04232, - 14.472874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "842762346", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Le chill", - "ref": "FR*EZD*E20771, FR*EZD*E20772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.02208, - 14.813607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "842796641", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Koud'pouss", - "ref": "FR*EZD*E66784, FR*EZD*E66785", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.657888301758055, - 41.908579309038004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "812328128", - "email": "oscar@electromaps.com", - "phone": "34 931.574.967", - "network": "Résidence les calanques", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.04, - 44.24 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REVE", - "owner:ref:FR:SIREN": "904902186", - "email": "contact@reve-mobilite.com", - "phone": "0490620673", - "network": "REVE", - "ref": "EVB-P1950759", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2, - 43.86 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "REVE", - "owner:ref:FR:SIREN": "904712833", - "email": "contact@reve-mobilite.com", - "phone": "0490620673", - "network": "REVE", - "ref": "4b05a334-d486-4efa-8d17-53cc7bf6c802", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9294755000000183, - 49.939609399999995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOMATECH SARL - TECHOFFICE", - "owner:ref:FR:SIREN": "519644280", - "email": "contact@techoffice.fr", - "network": "TECHOFFICE", - "ref": "EVB-DC439800001-B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9294755000000183, - 49.939609399999995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MOMATECH SARL - TECHOFFICE", - "owner:ref:FR:SIREN": "519644280", - "email": "contact@techoffice.fr", - "network": "TECHOFFICE", - "ref": "EVB-DC439800001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0903127000000001, - 44.868051799999996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOIS CHERI - HOTEL DU PORGE", - "owner:ref:FR:SIREN": "850830043", - "email": "contact@hotel-du-porge.com", - "network": "HOTEL DU PORGE", - "ref": "EVB-P21011574", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-20:00", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0903127000000001, - 44.868051799999996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "BOIS CHERI - HOTEL DU PORGE", - "owner:ref:FR:SIREN": "850830043", - "email": "contact@hotel-du-porge.com", - "network": "HOTEL DU PORGE", - "ref": "EVB-P21011574", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-20:00", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.72, - 16 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "434675906", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "McDonald's Basse terre", - "ref": "FR*EZD*E63395, FR*EZD*E63396", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.02, - 43.85 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Prodici", - "owner:ref:FR:SIREN": "848946000", - "email": "lahalledesproducteurs@gmail.com", - "phone": "04 90 74 19 71", - "network": "la halle des producteurs", - "ref": "ef41eefd-d7cd-49b0-95e2-e42df95067c2", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84, - 43.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Diffusion", - "owner:ref:FR:SIREN": "788660116", - "email": "b.magnier34@gmail.com", - "phone": "0625311024", - "network": "Borne de recharge Green Diffusion", - "ref": "269ecab2-053a-4ddc-8014-4fe697de6575", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.84, - 43.57 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCI NOKI", - "owner:ref:FR:SIREN": "824263024", - "email": "b.magnier34@gmail.com", - "phone": "0625311024", - "network": "Borne de recharge SCI noki", - "ref": "6decf4b8-3df0-462d-a1d6-efd5f0205801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53, - 43.49 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARRIERE DISTRIBUTION", - "owner:ref:FR:SIREN": "398695585", - "email": "staff@charriere-distribution.com", - "phone": " 04 42 29 84 29", - "network": "CHARRIERE DISTRIBUTION Meyrueil", - "ref": "20ea95e8-34da-49b6-8b26-6d3014bcdf77", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71, - 44.26 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ATELIERS PROVENCE LOISIRS", - "owner:ref:FR:SIREN": "523942498", - "email": "aploisirs84@orange.fr", - "phone": "0490403816", - "network": "ATELIERS PROVENCE LOISIRS", - "ref": "0c8de5ae-6f74-4e5c-be01-a973eec643f3", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.0255406, - 14.62847996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "328490685", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Antilles Téléphone", - "ref": "FR*EZD*E38638,FR*EZD*E38639", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.027682, - 14.615813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "331647602", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "BUT ", - "ref": "FR*EZD*E63049,FR*EZD*E63050,FR*EZD*E63057,FR*EZD*E63058", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.04633536, - 14.59493306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "841748551", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Hôtel B&B", - "ref": "FR*EZD*E63047,FR*EZD*E63048,FR*EZD*E93917,FR*EZD*E93918,FR*EZD*E63053,FR*EZD*E63054", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.00997, - 14.604876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "500634688", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "SEEN ", - "ref": "FR*EZD*E45697,FR*EZD*E45709", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.0238, - 14.616381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "824352322", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "Norauto", - "ref": "FR*EZD*E20869,FR*EZD*E20870", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.99128, - 14.612948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "391279924", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "GIE CENTREAUTODIS", - "ref": "FR*EZD*E63031, FR*EZD*E63032, FR*EZD*E112993, FR*EZD*E112994", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.04941, - 14.608132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "539439463", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Diet Vert ", - "ref": "FR*EZD*E45695", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.03312, - 14.614933 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "833393184", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "GHP", - "ref": "FR*EZD*E38632,FR*EZD*E38633", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.2253515, - 14.8023925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "219722196", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Mairie du Prêcheur", - "ref": "FR*EZD*E28306,FR*EZD*E28307", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.13439, - 14.772175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "813107943", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696 901 897", - "network": "New Peleen", - "ref": "FR*EZD*E28298,FR*EZD*E28299", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.02603, - 14.61776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "341861367", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Sodiva Citroên", - "ref": "FR*EZD*E26669, FR*EZD*E26670", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.99089, - 14.631557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "380129866", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Orange OGC", - "ref": "FR*EZD*E20775,FR*EZD*E20776", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.04474, - 14.603169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "380129866", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Orange Pointe de Grives", - "ref": "FR*EZD*E20873, FR*EZD*E20874,fr*ezd*e45685", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.99684, - 14.609692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "485186019", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Mr Bricolage Petit Manoir", - "ref": "FR*EZD*E63135,FR*EZD*E63136", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.08122, - 14.615527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "303188528", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Simar les Cycas", - "ref": "FR*EZD*E139858", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.52, - 16.26 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "819761883", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "BEBE 9 Les Abymes", - "ref": "VRT_NB_1290", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.61, - 16.2 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "819761883", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "ETS POMMEZ", - "ref": "FR*EZD*E38642, FR*EZD*E38643", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43, - 43.39 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "H alu concept", - "owner:ref:FR:SIREN": "907465017", - "email": "h.aluconcept@gmail.com", - "phone": "0762989875", - "network": "H alu concept", - "ref": "88d84b13-12ae-459d-be60-d0c8be6977f3", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8, - 43.71 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SCI Lounapiou", - "owner:ref:FR:SIREN": "844956771", - "email": "isa.pluta@orange.fr", - "phone": "0661485975", - "network": "SCI Lounapiou", - "ref": "8d950c44-4813-44df-bbf8-ecb35ffc2859", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2414326, - 43.4359393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM VITROLLES", - "ref": "30de7846-e85b-419c-b0cf-66ac32882c76", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5835336, - 43.307852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bastide beaudinard & tours (BBT)", - "owner:ref:FR:SIREN": "908822836", - "email": "contact@bastidebeaudinard.fr", - "phone": "0611342795", - "network": "Bastide beaudinard", - "ref": "e8f85317-d544-4bff-b9ab-04bb6c6cbc13", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70058, - 43.4805 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Vegetalis", - "owner:ref:FR:SIREN": "753765957", - "email": "d.genre@groupegenre.com", - "network": "VEGETALIS", - "ref": "11056a14-b43f-4cd2-9122-069014db6366", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-12:00, Mo-Sa 14:00-18:00, Su 09:00-13:00", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.42928004265, - 44.1805000305 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "83577307-cd5a-45aa-8ca4-733c20281019", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 9:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.14164, - 29.29117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "803540210", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "HYUNDAI", - "ref": "FRFR1ETSEA1", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2549, - 49.1296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "849244645", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "HYUNDAI", - "ref": "FRFR1EDDVK1", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4929901, - 44.840481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "HOTEL B&B", - "ref": "a4d3dd36-f16b-4b9c-98ed-f94a4167ee0d", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48177649999999295, - 44.84385340000002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAPOGYS", - "owner:ref:FR:SIREN": "781880372", - "email": "eses.bire@hapogys.fr", - "network": "HAPOGYS", - "ref": "EVB-P2011356", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 9:00-17:00", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48177649999999295, - 44.84385340000002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "HAPOGYS", - "owner:ref:FR:SIREN": "781880372", - "email": "eses.bire@hapogys.fr", - "network": "HAPOGYS", - "ref": "EVB-P2011356", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 9:00-17:00", - "start_date": "2022-03-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6594419, - 50.5160463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SCI PARAMEDICA", - "ref": "bd7e3b48-e320-4bcf-bc15-fe4445eb4c79", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7644623, - 45.8100136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM DARDILLY", - "ref": "8e2b8b94-f7e1-448c-a59d-b4892291f841", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0276404, - 45.7707093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM LYON EST", - "ref": "c7496279-027a-404b-807e-cf5f96df4241", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8523063, - 45.7582275 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM LYON ", - "ref": "3e298fae-ca66-4a7c-90ea-17ad42757373", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1279332, - 50.6526966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM VILLENEUVE D'ASCQ", - "ref": "1323dcbe-58b8-4150-877f-8df9576fc5d8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0458372, - 50.5461921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM SECLIN", - "ref": "c5dde61a-ba15-42a5-bd7d-938dcbe2efe8", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8840257, - 43.5818178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM MONTPELLIER", - "ref": "b2c99b0d-0ca6-4ff0-a555-1d977e0db35c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63, - 44.21 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHARRIERE DISTRIBUTION", - "owner:ref:FR:SIREN": "398695585", - "email": "staff@charriere-distribution.com", - "phone": "0466896051", - "network": "CHARRIERE DISTRIBUTION", - "ref": "56c3a7fd-0f7d-4345-951a-e5641db4a5f0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1177565, - 45.9008173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM ANNECY", - "ref": "3ac50120-44a2-43b4-9bf8-1827e87ae861", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3784608, - 43.321751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM MARSEILLE", - "ref": "49fb63ee-2b4d-4c15-ad8a-fd1bcac19c31", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9517688, - 45.5725536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM CHAMBERY", - "ref": "5d111086-0f3f-4e2c-97fc-a1d839c1fbda", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0502595, - 50.6796641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM WAMBRECHIES", - "ref": "aa2be99e-e896-49b0-9948-4dca327dcc72", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.94728, - 50.420087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "ESCAPE MIND", - "ref": "4634c2ea-9655-4f07-81b7-9a0c99b1aef5", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.061562, - 49.105209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAP EMPLOI", - "owner:ref:FR:SIREN": "345406565", - "email": "dany.capemploi@gmail.com", - "phone": "0387986009", - "network": "CAP EMPLOI", - "ref": "bfccb924-10de-414b-90e9-20208967ee22", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-17:00", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.06, - 44.12 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "71dbeab0-2dff-4a52-bdc6-fc3a114fa3de", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8283, - 43.7872 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "e5981b93-4ae8-4595-9b8c-f7582b59c5fe", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.849093334457226, - 43.5616514180901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE SAS", - "owner:ref:FR:SIREN": "828619346", - "email": "m.drif@autorecharge.fr", - "phone": "0970755400", - "network": "AUTORECHARGE SAS", - "ref": "559912", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77370505338358, - 49.40885526410706 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE SAS", - "owner:ref:FR:SIREN": "450015250", - "email": "m.drif@autorecharge.fr", - "phone": "0970755400", - "network": "AUTORECHARGE SAS", - "ref": "555724", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5663550980706784, - 48.71728225183364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE SAS ", - "owner:ref:FR:SIREN": "317803443", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "AUTORECHARGE SAS", - "ref": "333055", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.617293760965289, - 47.46216679205851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "AUTORECHARGE SAS", - "owner:ref:FR:SIREN": "793681313", - "email": "contact@autorecharge.fr", - "phone": "0970755400", - "network": "AUTORECHARGE SAS", - "ref": "562957", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988044, - 45.819755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "950396598", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "LOGIS HOTEL LYON EST", - "ref": "FRECN0148", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.988044, - 45.819755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "950396598", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "LOGIS HOTEL LYON EST", - "ref": "FRECN0147", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.56, - 16.24 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "819761883", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "Fitness park Jarry", - "ref": "FR*EZD*E26743, FR*EZD*E8102", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.69, - 16.03 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "428801658", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "Bananes Vertes St Claude", - "ref": "FR*EZD*E28286, FR*EZD*E28287", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918116, - 45.67761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "839910783", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION LOUIS PRADEL", - "ref": "FRECN0154", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.918116, - 45.67761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "839910783", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION LOUIS PRADEL", - "ref": "FRECN0153", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.27712, - 4.8580774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "350072666", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Argos", - "ref": "FR*EZD*E20791,FR*EZD*E20792", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.8, - 48.64 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Hotel Le Moulin", - "owner:ref:FR:SIREN": "839367117", - "email": "infos@moulin-wantzenau.com", - "phone": "0388592222", - "network": "Hotel Le Moulin", - "ref": "58a46859-0222-4f9f-836c-288e576ebe96", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85, - 45.07 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELEC eCONNECT", - "owner:ref:FR:SIREN": "853251635", - "email": "contact@elec-econnect.fr", - "phone": "0475079175", - "network": "ELEC eCONNECT", - "ref": "530096e5-2e8c-4396-af14-c2ed1b384914", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781441, - 46.285911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "802207779", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION PETITE GROSNE", - "ref": "FRECN0158", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.781441, - 46.285911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "802207779", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION PETITE GROSNE", - "ref": "FRECN0157", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.8, - 48.67 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Golf de La Wantzenau", - "owner:ref:FR:SIREN": "350349916", - "email": "accueil@golf-wantzenau.fr", - "phone": "0388963773", - "network": "Golf de La Wantzenau", - "ref": "022f219d-9d94-466f-bf6c-bdf122d5ac17", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-FR 08:00-17:00", - "start_date": "2022-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74075, - 45.98117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "350758504", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION THEODORE BRAUN", - "ref": "FRECN0155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.74075, - 45.98117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "350758504", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "STATION THEODORE BRAUN", - "ref": "FRECN0156", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.66, - 43.47 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "ac79fb7e-9741-4cb8-a72c-a7e514190a20", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.69, - 16.03 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "434675906", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696901897", - "network": "Mc Donald's Basse Terre", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3188, - 43.6363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "533577581", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "HYUNDAI", - "ref": "FRFR1EVFWM1", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6153612, - 50.3709132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "405213398", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "JORIS IDE", - "ref": "FRFR1EVGKF1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25850958, - 49.91161768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "489359067", - "email": "contact@zeborne.com", - "phone": "0252072597", - "network": "ZEbonrne", - "ref": "1ba7ddde-5acd-49ce-9d80-826777190bcf", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2020-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.17653676640929428, - 44.42495892041201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LE MOULIN DE LABOIRIE", - "owner:ref:FR:SIREN": "749823597", - "email": "info@moulindelaboirie.fr", - "network": "MOULIN DE LABOIRIE", - "ref": "EVB-DC440500001B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-20:00", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.17653676640929428, - 44.42495892041201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LE MOULIN DE LABOIRIE", - "owner:ref:FR:SIREN": "749823597", - "email": "info@moulindelaboirie.fr", - "network": "MOULIN DE LABOIRIE", - "ref": "EVB-DC440500001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-20:00", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.17653676640929428, - 44.42495892041201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LE MOULIN DE LABOIRIE", - "owner:ref:FR:SIREN": "749823597", - "email": "info@moulindelaboirie.fr", - "network": "MOULIN DE LABOIRIE", - "ref": "EVB-P21211892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 8:00-20:00", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.407609123225763, - 43.41959147913006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "379629447", - "email": "oscar@electromaps.com", - "phone": "34 931.574.967", - "network": "Hotel saint alban", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.476711409891, - 43.476583984941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "803719277", - "email": "oscar@electromaps.com", - "phone": "34 931.574.967", - "network": "1PACTE", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.272843, - 4.909545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "529558108", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Jo Froid", - "ref": "FR*EZD*E20887,FR*EZD*E20888", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.36621, - 4.8792952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "503449878", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Hôtel La Chaumière", - "ref": "FR*EZD*E45643", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.33534, - 4.846775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "337770341", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Hôtel La Marmotte", - "ref": "FR*EZD*E45632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.305634, - 4.938339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "789951456", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Hôpital privé Saint Adrien", - "ref": "FR*EZD*E26679,FR*EZD*E26680", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.32731, - 4.9351181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "793418542", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Agence 973", - "ref": "FR*EZD*E45629", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.27651, - 4.9046378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Green Technologie", - "owner:ref:FR:SIREN": "219733094", - "email": "odile.coumeau@greentechnologie.net", - "phone": "696901897", - "network": "Maire de Remire-Montjoly", - "ref": "FR*EZD*E65528, FR*EZD*E65529", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.57, - 48.36 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sud Hotel", - "owner:ref:FR:SIREN": "490020765", - "email": "sud-hotel-alsace@orange.fr", - "phone": "0388743065", - "network": "Sud Hotel", - "ref": "f8fd8ac0-e00a-49ff-be60-0f8e71aa039a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0980716683751455, - 50.59735822646129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Garage lefebvre", - "owner:ref:FR:SIREN": "817450646", - "email": "garage.lefebvre62560@orange.fr", - "phone": "0321395098", - "network": "Renault Lefebvre", - "ref": "662f53b3-4e71-4281-8b5b-979a06521abc", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6673639438636192, - 50.885564840335476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "422491902", - "email": "exploitation@freshmile.com", - "phone": "03 68 78 14 35 ", - "network": "La Bouche Rit", - "ref": "WABD1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.96475, - 50.986317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Pilotage Maritime", - "owner:ref:FR:SIREN": "783595028", - "email": "thierry.marchisio@pilotagedunkerque.com", - "phone": "0683622707", - "network": "Borne Pilotage", - "ref": "5897d2b1-12d6-4d32-aaaf-5bcaa294fd40", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2877885, - 43.4227369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "332009471", - "email": "advenir@zeborne.com", - "phone": "02 52 07 25 97", - "network": "FORD VITROLLES", - "ref": "35840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9288851, - 48.7580017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "524678711", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "STYLE AND DESIGN", - "ref": "45135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9288851, - 48.7580017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "524678711", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "STYLE AND DESIGN", - "ref": "45134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9288851, - 48.7580017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "524678711", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "STYLE AND DESIGN", - "ref": "45107", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.9288851, - 48.7580017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "524678711", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "STYLE AND DESIGN", - "ref": "45106", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3993781, - 45.4626965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "501208680", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Saint-Etienne", - "ref": "49430", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:30", - "start_date": "2020-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3993781, - 45.4626965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEBORNE", - "owner:ref:FR:SIREN": "501208680", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "Mazda - Saint-Etienne", - "ref": "60973\t", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:30", - "start_date": "2021-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11858, - 49.55734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11858, - 49.55734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11858, - 49.55734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.134239, - 49.48786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11858, - 49.55734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.096062, - 49.518016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11858, - 49.55734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.261804, - 49.642302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.261804, - 49.642302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.261804, - 49.642302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.261804, - 49.642302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.096062, - 49.518016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.096062, - 49.518016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.096062, - 49.518016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11858, - 49.55734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102609, - 49.505414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102609, - 49.505414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102609, - 49.505414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102609, - 49.505414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102609, - 49.505414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.102609, - 49.505414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.131123, - 49.484192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.131123, - 49.484192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.131123, - 49.484192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.131123, - 49.484192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.131123, - 49.484192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.131123, - 49.484192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.127461, - 49.495645 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.160302, - 49.515081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.160302, - 49.515081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.160302, - 49.515081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.115706, - 49.525553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.160302, - 49.515081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.115706, - 49.525553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.09407341836829, - 14.607158013009274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GREEN TECHNOLOGIE", - "owner:ref:FR:SIREN": "393628136", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696295629", - "network": "CASINO BATELIERE PLAZZA", - "ref": "VRT_NB_935, VRT_NB_936", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.93685837866524, - 14.560713873777255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GREEN TECHNOLOGIE", - "owner:ref:FR:SIREN": "219722238", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696295629", - "network": "COMMUNE DE SAINT ESPRIT", - "ref": "VRT_NB_1392", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -60.902208073487955, - 14.486405978847023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GREEN TECHNOLOGIE", - "owner:ref:FR:SIREN": "219722204", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696295629", - "network": "MARCHE DE RIVIERE PILOTE", - "ref": "VRT_NB_243_2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -61.0396036414057, - 14.670001347489613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GREEN TECHNOLOGIE", - "owner:ref:FR:SIREN": "219740123", - "email": "odile.coumau@ezdrive.fr", - "phone": "0696295629", - "network": "972 - SAINT JOSEPH", - "ref": "VRT_NB_933", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0810055, - 49.0997673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "348714403", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "BMW", - "ref": "FRFR1EAGUA1", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.537796, - 43.5282203 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "306300344", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "HYUNDAI", - "ref": "FRFR1ETHZL1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.175945, - 43.9295849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "514882372", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "FIRSTOP", - "ref": "FRFR1EZNAS1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2631235, - 49.851386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "394452973", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "BMW", - "ref": "FRFR1EAMKA1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25, - 44.4 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "627644eb-6bb8-4745-a77f-f7ae247ea5ef", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2589209, - 49.2692571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "adcda78d-e497-4203-b3fb-2523c6c1a318", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1096503, - 49.2859075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1676349, - 49.2254847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "3a5df8b8-d48d-4b91-916a-83b756aa1a71", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1676349, - 49.2254847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "3a5df8b8-d48d-4b91-916a-83b756aa1a71", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0071297, - 47.6644493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "2c1af022-bfea-4873-95b1-d5b165dc1e3c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0071297, - 47.6644493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "2c1af022-bfea-4873-95b1-d5b165dc1e3c", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9605582, - 49.5355585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "b409deba-3e91-4894-9a79-36f781fafd82", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9605582, - 49.5355585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "b409deba-3e91-4894-9a79-36f781fafd82", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.370679, - 49.182863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "f5df4001-c9b8-4e62-908d-ba944e3e0668", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.370679, - 49.182863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "f5df4001-c9b8-4e62-908d-ba944e3e0668", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7638707, - 49.2764924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "cc4f55cf-8fe3-4362-b680-c3b56f4debba", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.7638707, - 49.2764924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "cc4f55cf-8fe3-4362-b680-c3b56f4debba", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.2589209, - 49.2692571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "adcda78d-e497-4203-b3fb-2523c6c1a318", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6863119, - 49.2746651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "b054404e-eafd-4c89-b189-da392f1483ed", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0373753, - 49.020012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "b06856d0-0348-452d-a5d7-69125802d0fe", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0373753, - 49.020012 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "b06856d0-0348-452d-a5d7-69125802d0fe", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9605582, - 49.5355585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "3c0a462e-e7db-4207-b678-d0b1a79f41c6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9605582, - 49.5355585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "3c0a462e-e7db-4207-b678-d0b1a79f41c6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.271643, - 49.145128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "d490d47e-bb30-4796-bc2a-42adc1a6eb2a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.271643, - 49.145128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "d490d47e-bb30-4796-bc2a-42adc1a6eb2a", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1096503, - 49.2859075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.026733, - 49.4474373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "f9fe386d-6bd1-4f19-ad8d-4bbe24ba78c8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.491859, - 49.549938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "db4771df-c298-4707-a5ae-83008a975d01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.491859, - 49.549938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "db4771df-c298-4707-a5ae-83008a975d01", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6863119, - 49.2746651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "b054404e-eafd-4c89-b189-da392f1483ed", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1096503, - 49.2859075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.026733, - 49.4474373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "f9fe386d-6bd1-4f19-ad8d-4bbe24ba78c8", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1096503, - 49.2859075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0646759, - 49.4153984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "80229f2d-90d8-4262-864f-e9ee72f0a93f", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6610584, - 48.7624117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "d265d636-6dea-4a89-9dda-fdae0a6e4862", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6610584, - 48.7624117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "d265d636-6dea-4a89-9dda-fdae0a6e4862", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.455859, - 49.3210887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "14ec007e-3ebd-4ded-8691-b92b88f1e503", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.455859, - 49.3210887 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "14ec007e-3ebd-4ded-8691-b92b88f1e503", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.1550216, - 48.9978196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0646759, - 49.4153984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "80229f2d-90d8-4262-864f-e9ee72f0a93f", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.815166, - 49.3586376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "2ff50929-ecb2-4e08-a1f3-2373421a9f22", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9605582, - 49.5355585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "7ac8a35d-00d7-4f67-a747-77259dfcb4b8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19538, - 49.5149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "58b09294-5a64-456d-bbda-1839deb8184e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19538, - 49.5149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "58b09294-5a64-456d-bbda-1839deb8184e", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19538, - 49.5149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "58b09294-5a64-456d-bbda-1839deb8184e", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.815166, - 49.3586376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "2ff50929-ecb2-4e08-a1f3-2373421a9f22", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.19538, - 49.5149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "58b09294-5a64-456d-bbda-1839deb8184e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0317198, - 49.2760261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "a720801f-b0e6-4b2e-a1ea-c596dcc79a1a", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3017575, - 49.1910497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "47097357-e25b-46c3-92a3-37fb7e88d7e6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3017575, - 49.1910497 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "47097357-e25b-46c3-92a3-37fb7e88d7e6", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.9605582, - 49.5355585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "7ac8a35d-00d7-4f67-a747-77259dfcb4b8", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.0317198, - 49.2760261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LIDL, Nicolas Barbarin", - "owner:ref:FR:SIREN": "387880602", - "email": "vgaillon@lidl.fr", - "network": "LIDL", - "ref": "a720801f-b0e6-4b2e-a1ea-c596dcc79a1a", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.604637, - 48.077638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ecophi mobility", - "owner:ref:FR:SIREN": "334836608", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "MO-FR 08:00-17:00", - "start_date": "2022-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3491347, - 47.3517596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EcoPhi mobility", - "owner:ref:FR:SIREN": "852602259", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3491347, - 47.3517596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EcoPhi mobility", - "owner:ref:FR:SIREN": "852602259", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3491347, - 47.3517596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EcoPhi mobility", - "owner:ref:FR:SIREN": "852602259", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3491347, - 47.3517596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EcoPhi mobility", - "owner:ref:FR:SIREN": "852602259", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3491347, - 47.3517596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EcoPhi mobility", - "owner:ref:FR:SIREN": "852602259", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.247222, - 47.001784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ProperPhi", - "owner:ref:FR:SIREN": "837717909", - "email": "contacta@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "ref": "63f5c84e96fb7db5ae3b40d7", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 9:00-19:00", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.247222, - 47.001784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ProperPhi", - "owner:ref:FR:SIREN": "837717909", - "email": "contact@properphi.com", - "phone": "603062098", - "network": "PROPERPHI", - "ref": "63f5c84e96fb7db5ae3b40d7", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 9:00-19:00", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4083504069540536, - 48.63538775462057 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "TACW2244221S3384", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 08:00-18:00", - "start_date": "2022-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.073833, - 49.510417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223944, - 49.564167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223944, - 49.564167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123139, - 49.503611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123139, - 49.503611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.073833, - 49.510417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123139, - 49.503611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123139, - 49.503611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123139, - 49.503611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.123139, - 49.503611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.085389, - 49.505944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.085389, - 49.505944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325158187997181, - 48.63340097926608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GABMAG17", - "owner:ref:FR:SIREN": "830297222", - "email": "contact@hoteltrecelin.com", - "phone": "0681475113", - "network": "Hôtel Le Trecelin", - "ref": "TACW2241521S0178", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 8:00-12:00,Mo-Su 14:00-18:00", - "start_date": "2021-07-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9851546747886144, - 48.50192886577205 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "TACW2244221S3391", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78275924122744, - 43.795898154156454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LA CONCIERGERIE D'ISA.", - "owner:ref:FR:SIREN": "879276491", - "email": "laconciergeriedisa@gmail.com", - "phone": "0698807582", - "network": "LA CONCIERGERIE D'ISA.", - "ref": "45fa4771-7ea9-4254-bb98-b5137ab884ff", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.936256705171751, - 43.63943483453543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "IXINA Le Cres", - "owner:ref:FR:SIREN": "479159261", - "email": "montpellierlescres@ixina.com", - "phone": "04 99 77 01 24", - "network": "IXINA Le cres", - "ref": "598bad4e-2dd4-4b70-be44-6ba9574186d4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2798983323309523, - 43.33412185286013 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "aa6b4650-2d0b-4828-9b77-802073fa2ae9", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8515752990825822, - 43.57430316069223 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "923eba3c-7e81-496b-8a4c-79857a9566f8", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7257621, - 45.1810981 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM GRENOBLE", - "ref": "3cb2f22b-7514-4d79-b8ab-327dad07489e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1176181, - 50.6535398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DESENFANS", - "ref": "8142b174-ad7a-42a1-891b-74ba8427f498", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8547222, - 50.9522222 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "389643859", - "operator": "ubitricity", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3533333, - 50.57 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "389643859", - "operator": "ubitricity", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8369444, - 50.9519444 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "389643859", - "operator": "ubitricity", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122687, - 49.494916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122687, - 49.494916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080807, - 49.504056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080807, - 49.504056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.106136, - 49.493591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.106136, - 49.493591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197971, - 49.513438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210925, - 49.502917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210925, - 49.502917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197275, - 49.504122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197275, - 49.504122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.105017, - 49.530122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.105017, - 49.530122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197971, - 49.513438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163932, - 49.513496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.193942, - 49.544211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.193942, - 49.544211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.191899, - 49.506711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.191899, - 49.506711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163932, - 49.513496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122687, - 49.494916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.122687, - 49.494916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080807, - 49.504056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.080807, - 49.504056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.172373, - 49.499466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.106136, - 49.493591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197971, - 49.513438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197971, - 49.513438 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210925, - 49.502917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197275, - 49.504122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.197275, - 49.504122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.105017, - 49.530122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.105017, - 49.530122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.210925, - 49.502917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.106136, - 49.493591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163932, - 49.513496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.193942, - 49.544211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.193942, - 49.544211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.191899, - 49.506711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.191899, - 49.506711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.163932, - 49.513496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229806, - 49.511389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189389, - 49.543417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189389, - 49.543417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189389, - 49.543417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189389, - 49.543417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189389, - 49.543417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229806, - 49.511389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229806, - 49.511389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229806, - 49.511389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229806, - 49.511389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.229806, - 49.511389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.110167, - 49.509889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.189389, - 49.543417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.073833, - 49.510417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.110167, - 49.509889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.173417, - 49.551389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.110167, - 49.509889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.073833, - 49.510417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223944, - 49.564167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.173417, - 49.551389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.223944, - 49.564167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.173417, - 49.551389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.173417, - 49.551389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.173417, - 49.551389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.173417, - 49.551389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.110167, - 49.509889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "UBITRICITY GMBH", - "owner:ref:FR:SIREN": "310505771", - "email": "contact@ubitricity.com", - "network": "Ubitricity France Network", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.76385, - 48.5139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Mairie Saint-Brieuc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0, - 0 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Dropbird", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.39705, - 48.2576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Mairie Kintzheim", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.39882, - 48.253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Mairie Kintzheim", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.82319, - 48.2502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Langouet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.55734, - 47.2201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Enedis Nantes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.67833, - 48.1044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Citedia Rennes", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.895146, - 47.0429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Hopital de Cholet", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.63448, - 48.1093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge Station Mobile", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44753, - 43.5069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge CROUS Pauliane", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.44753, - 43.5069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge CROUS Pauliane", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.95241, - 43.2928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Dropnplug", - "owner:ref:FR:SIREN": "882060387", - "email": "claude.lebrize@dropnplug.fr", - "phone": "0698729394", - "network": "Réseau de recharge ACCOR Castelnaudary", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5801292, - 45.9221544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "419599980", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "CARREFOUR CONTACT", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.374363, - 48.663549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Daltoner Avranches", - "owner:ref:FR:SIREN": "448187617", - "email": "denis.lot@daltoner.fr", - "phone": "0608471175", - "network": "Daltoner Avranches", - "ref": "01FPGEN0J55GJS4KRGQHZCXJCE", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "mo-fr 09:00-12:00,mo-fr 14:00-18:00", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.67, - 46.69 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "DIDIER CHARTON-VACHET", - "owner:ref:FR:SIREN": "812676997", - "email": "contact@chartonvachet.fr", - "phone": "0643487753", - "network": "DIDIER CHARTON-VACHET", - "ref": "01FPCSPWFH7EW2RD2GQRR3ESW4", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0873262, - 50.5445143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DOUBLET", - "ref": "01FP88MRJPE0EQGPCENVQPGF7P", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3577, - 43.6368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "310162417", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "LECLERC", - "ref": "FROTHESENT113", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0865, - 43.1076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "425127685", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "CAPITAINERIE PORT DE GRUISSAN", - "ref": "FRFR1EEZUX FRFR1EFKMT FRFR1ELWTM", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.372946, - 48.919807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "811290642", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "DRIVEONE", - "ref": "FRFR1EBYBZ FRFR1ECSZW FRFR1EFSVZ FRFR1EPCKC FRFR1EPRKX FRFR1EQCGT FRFR1ESCMD FRFR1ETUQM FRFR1EFYGB FRFR1EEBEA FRFR1EATVB FRFR1EBNMJ", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.46, - 42.72 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Technic Elec", - "owner:ref:FR:SIREN": "350493102", - "email": "secretariat.technic@orange.fr", - "phone": "0495337506", - "network": "Hôtel l'Alivi", - "ref": "01FR391256KFGBJ9W05VEPKKGD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.00201, - 42.60646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "329572549", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "INTERMARCHE", - "ref": "FRFR1EBMYP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-09-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5008902, - 44.7920565 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "510125842", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "LECLERC", - "ref": "FROTHEOTHR228", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7584632000000058, - 46.135216299999996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SARL RUITER", - "owner:ref:FR:SIREN": "494457062", - "email": "contact@porte90.fr", - "network": "PORTE 90", - "ref": "EVB-P21251821", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7584632000000058, - 46.135216299999996 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SARL RUITER", - "owner:ref:FR:SIREN": "494457062", - "email": "contact@porte90.fr", - "network": "PORTE 90", - "ref": "EVB-P21251821", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-11-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.495418, - 46.675892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LE BISTRO D'HUGO", - "owner:ref:FR:SIREN": "828451815", - "email": "contact@lebistrodhugo.com", - "phone": "0384477147", - "network": "LE BISTRO D'HUGO", - "ref": "01FNDTK7FW5XH86EAJYX4N0JGH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Tu-Fr 12:00-14:00,Su 12:00-15:00", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5745869999999909, - 44.866026700000006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GAZ DE BORDEAUX", - "owner:ref:FR:SIREN": "502941479", - "email": "clients@gazdebordeaux.fr", - "network": "GAZ DE BORDEAUX", - "ref": "EVB-P2011075", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Thu 8:15-17:30", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.506315, - 48.904942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Mickael Auto", - "owner:ref:FR:SIREN": "488263203", - "email": "mickaelauto@wanadoo.fr", - "phone": "0233616130", - "network": "Mickael Auto", - "ref": "01FPHGWNSBY5R2WDMKCZGZ7DKN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "mo-fr 09:00-12:00,mo-fr 14:00-18:00", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.23, - 43.51 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Société SIPECC", - "owner:ref:FR:SIREN": "830690715", - "email": "contact@sipecc.fr", - "phone": "0442786952", - "network": "Réseau de recharge SIPECC", - "ref": "01FPWFYAQ4YXZHYKY5V5MV053Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-16:00", - "start_date": "2021-12-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24, - 43.51 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "JAV INVESTISSEMENT", - "owner:ref:FR:SIREN": "479774051", - "email": "peggy.orssaud@jav.fr", - "phone": "0486687630", - "network": "RESEAU DE RECHARGE JAV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4, - 43.44 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SIPECC", - "owner:ref:FR:SIREN": "095720314", - "email": "contact@sipecc.fr", - "phone": "0442786952", - "network": "Borne de recharge HEXAOM Bouc bel air", - "ref": "d536b72d-7329-4ad7-8702-c600af302627", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24, - 43.4 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SARL VAHE", - "owner:ref:FR:SIREN": "509530572", - "email": "eknacat@hotmail.fr", - "phone": "0612666006", - "network": "Réseau de recharge VAHE EKNADISSIAN", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24, - 43.42 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FITP SARL", - "owner:ref:FR:SIREN": "384614921", - "email": "sas.fitp@yahoo.com", - "phone": "0465059822", - "network": "FITP Bureau", - "ref": "f67a4223-e24c-4cab-b49d-70e256e44c44", - "socket:typee": "yes", - "socket:type2": "yes", - "authentication:none": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.67, - 49.47 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "01FPYKKPMQ0CWRZBX3A707M325", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77616501, - 45.67892728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77616501, - 45.67892728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77616501, - 45.67892728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0925522, - 44.3457871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 08:00-23:00", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0925522, - 44.3457871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 08:00-23:00", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0925522, - 44.3457871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 08:00-23:00", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0925522, - 44.3457871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "833942725", - "email": "info-usager.silene@spie.com", - "phone": "0 970 830 213", - "network": "BECABLE", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Su 08:00-23:00", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7573375, - 46.3641578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "sa les broyers", - "owner:ref:FR:SIREN": "451685689", - "email": "pcoquard@chateaudesbroyers.fr", - "phone": "0385367034", - "network": "chateau des broyers", - "ref": "bd947ca4-5e7c-11ec-bf63-0242ac130002", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "8:00-19:00", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.77247, - 50.39143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "216203711", - "email": "exploitation@freshmile.com", - "phone": "0391830700", - "network": "FRESHMILE", - "ref": "FR*FR1*EQTGP*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91136, - 50.3822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "216207241", - "email": "exploitation@freshmile.com", - "phone": "0391830700", - "network": "FRESMILE", - "ref": "FR*FR1*EGMAM*1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943865577251607, - 43.53867520000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evzen (SMEG Développement)", - "owner:ref:FR:SIREN": "950559567", - "email": "contact@evzen.com", - "phone": "37792050403", - "network": "evzen", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.949769135, - 43.6344804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evzen (SMEG Développement)", - "owner:ref:FR:SIREN": "799669155", - "email": "contact@evzen.com", - "phone": "37792050403", - "network": "evzen", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943865577251607, - 43.53867520000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evzen (SMEG Développement)", - "owner:ref:FR:SIREN": "950559567", - "email": "contact@evzen.com", - "phone": "37792050403", - "network": "evzen", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943865577251607, - 43.53867520000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evzen (SMEG Développement)", - "owner:ref:FR:SIREN": "950559567", - "email": "contact@evzen.com", - "phone": "37792050403", - "network": "evzen", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.943865577251607, - 43.53867520000001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evzen (SMEG Développement)", - "owner:ref:FR:SIREN": "950559567", - "email": "contact@evzen.com", - "phone": "37792050403", - "network": "evzen", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2021-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.949769135, - 43.6344804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evzen (SMEG Développement)", - "owner:ref:FR:SIREN": "799669155", - "email": "contact@evzen.com", - "phone": "37792050403", - "network": "evzen", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-20:00", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8323045, - 50.6733928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "TALK FUNDRAISING", - "ref": "01FMVR49DJC50TG0T85G94Y3VT", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.109555, - 49.108611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CHAPITEAUX SERVICE", - "owner:ref:FR:SIREN": "408663763", - "email": "chapiteaux-service@wanadoo.fr", - "phone": "0387099123", - "network": "CHAPITEAUX SERVICE", - "ref": "058f5056-4884-11ec-81d3-0242ac130003", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, 14:00-17:00", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3719483, - 43.483111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "479244576", - "email": "frsupport@ev-box.com", - "network": "STUDIO30", - "ref": "NLEVBE3WLPUMM4CDNBGWMIRQ3PKPE6JU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-fr 8:00-12:00,13:00-17:00", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.817927, - 48.569214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.004982, - 48.526901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.857123, - 48.554886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.857123, - 48.554886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.295882, - 48.813103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.295882, - 48.813103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.305036, - 48.777443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.305036, - 48.777443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.53545, - 48.198631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.004982, - 48.526901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.768753, - 48.506653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.397579, - 48.222214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.397579, - 48.222214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.138881, - 48.842079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.26137, - 48.7452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.26137, - 48.7452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.617642, - 48.276394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.951, - 48.5108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.817927, - 48.569214 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.829592, - 48.601341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.951, - 48.5108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.66815, - 48.51302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.81773, - 48.408218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.744903, - 48.446144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.744903, - 48.446144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.042515, - 48.442223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.829592, - 48.601341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.148005, - 48.56057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.148005, - 48.56057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.66815, - 48.51302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.982655, - 48.486935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.441761, - 48.807404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.441761, - 48.807404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07167, - 48.745758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.07167, - 48.745758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.583354, - 48.102253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.583354, - 48.102253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.982655, - 48.486935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.617642, - 48.276394 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.2244, - 48.334202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.042515, - 48.442223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.279891, - 48.751244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.984804, - 48.747627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.238562, - 48.797573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.238562, - 48.797573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.408021, - 48.624866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.408021, - 48.624866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.300457, - 48.630089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.300457, - 48.630089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.279891, - 48.751244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75524, - 48.34719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.413295, - 48.794518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.413295, - 48.794518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29119, - 48.5971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.29119, - 48.5971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.24004, - 48.52145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.24004, - 48.52145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.138881, - 48.842079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.984804, - 48.747627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.447615, - 48.705162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.447615, - 48.705162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.030685, - 48.800983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.75524, - 48.34719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*71*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.243134, - 48.73119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.243134, - 48.73119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.513678, - 48.275558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.513678, - 48.275558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.837421, - 48.653999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.837421, - 48.653999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.175645, - 48.347656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.175645, - 48.347656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.396323, - 48.545696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.396323, - 48.545696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.968046, - 48.541393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.968046, - 48.541393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.2244, - 48.334202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.030685, - 48.800983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.81773, - 48.408218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.180457, - 48.22707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.53545, - 48.198631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.000515, - 48.536179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.295955, - 48.394058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.295955, - 48.394058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.269847, - 48.59726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.269847, - 48.59726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.444974, - 48.815392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.444974, - 48.815392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.000515, - 48.536179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.191425, - 48.674393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.340143, - 48.566673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.191425, - 48.674393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.228862, - 48.842125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.228862, - 48.842125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.523392, - 48.679855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.523392, - 48.679855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.914907, - 48.509109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.914907, - 48.509109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*21*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.340143, - 48.566673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.449318, - 48.607483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.567519, - 48.683102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.180457, - 48.22707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.517125, - 48.771851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.947672, - 48.556736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.947672, - 48.556736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-11-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.347963, - 48.672264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.347963, - 48.672264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.342592, - 48.76889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.342592, - 48.76889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.184587, - 48.556637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.449318, - 48.607483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.184587, - 48.556637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20627, - 48.6227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.20627, - 48.6227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.716298, - 48.493778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.716298, - 48.493778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-10-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.982932, - 48.631336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.982932, - 48.631336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.567519, - 48.683102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.577855, - 48.771084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34587, - 48.274349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.144788, - 48.580271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.218302, - 48.433086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.218302, - 48.433086 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.056249, - 48.531796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.056249, - 48.531796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*35*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.386452, - 48.807682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.386452, - 48.807682 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.678333, - 48.484627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.144788, - 48.580271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00721, - 48.696449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.186402, - 48.473217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.186402, - 48.473217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.214817, - 48.347222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.214817, - 48.347222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.423825, - 48.283971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.423825, - 48.283971 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34587, - 48.274349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.00721, - 48.696449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.084445, - 48.405834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.577855, - 48.771084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.552271, - 48.588692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.851859, - 48.522652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.851859, - 48.522652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.358388, - 48.812908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.358388, - 48.812908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.467628, - 48.630241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.467628, - 48.630241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.552271, - 48.588692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.833905, - 48.62648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.084445, - 48.405834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.833905, - 48.62648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.324368, - 48.408466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.324368, - 48.408466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.126689, - 48.512863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.126689, - 48.512863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.028889, - 48.455833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.028889, - 48.455833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2016-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.517125, - 48.771851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.096286, - 48.224899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.47037, - 48.613342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.048475, - 48.776299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.757097, - 48.514561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.486411, - 48.32917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.486411, - 48.32917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.854698, - 48.445023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.854698, - 48.445023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.057214, - 48.315941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.057214, - 48.315941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.048475, - 48.776299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.44691, - 48.55727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9816, - 48.381901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9816, - 48.381901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.513626, - 48.832668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.513626, - 48.832668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.252257, - 48.239723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*158*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.252257, - 48.239723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*158*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.294399, - 48.252918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.757097, - 48.514561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.44691, - 48.55727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.151064, - 48.60416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.129, - 48.389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.523397, - 48.359306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.045, - 48.352299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.045, - 48.352299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.838271, - 48.280586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.838271, - 48.280586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.51775, - 48.47099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.51775, - 48.47099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.129, - 48.389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.765253, - 48.518089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*147*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0562, - 48.4561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0562, - 48.4561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.758196, - 48.177609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.758196, - 48.177609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0288, - 48.409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0288, - 48.409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.765253, - 48.518089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*147*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.294399, - 48.252918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.151064, - 48.60416 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.779689, - 48.514324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.873183, - 48.663328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.441176, - 48.238331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.453745, - 48.731562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*176*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.470821, - 48.757046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*178*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.63257, - 48.654836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*179*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.517615, - 48.784696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*180*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.473512, - 48.611415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*181*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.467023, - 48.606523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*182*1*_*_", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.873183, - 48.663328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.735503, - 48.180209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*173*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.986308, - 48.632057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*184*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.986308, - 48.632057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*184*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.972857, - 48.541696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*185*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.972857, - 48.541696 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*185*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.229598, - 48.521725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*189*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.229598, - 48.521725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 22", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*189*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.47037, - 48.613342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*92*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.441176, - 48.238331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.445852, - 48.422768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*172*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1873, - 48.517834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73364, - 48.23396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1873, - 48.517834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.51702, - 48.29814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.51702, - 48.29814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0441, - 48.450901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0441, - 48.450901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*163*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.247365, - 48.377785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*164*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.247365, - 48.377785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*164*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.73364, - 48.23396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.165161, - 48.61179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.189, - 48.598099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.189, - 48.598099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.987586, - 48.198135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.223394, - 48.786499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.223394, - 48.786499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.04553, - 48.4747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*169*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.165161, - 48.61179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.523397, - 48.359306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.987586, - 48.198135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.779689, - 48.514324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91299, - 48.403732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.869649, - 48.389687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.869649, - 48.389687 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.133419, - 48.664848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.133419, - 48.664848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.009714, - 48.303225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.009714, - 48.303225 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.91299, - 48.403732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.727605, - 48.542061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.914543, - 48.429111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.727605, - 48.542061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.13708, - 48.586258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.13708, - 48.586258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.159283, - 48.69836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.159283, - 48.69836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388829, - 48.449814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388829, - 48.449814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.914543, - 48.429111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15994, - 48.315102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.456394, - 48.727578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.248423, - 48.640558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.316225, - 48.234554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.928985, - 48.675999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.928985, - 48.675999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.125556, - 48.357742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.125556, - 48.357742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1057, - 48.70467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.1057, - 48.70467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.248423, - 48.640558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.15994, - 48.315102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.104479, - 48.55711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.104479, - 48.55711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.736905, - 48.490196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.736905, - 48.490196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.751509, - 48.52273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3, - 48.381386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3, - 48.381386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.456394, - 48.727578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.751509, - 48.52273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.657751, - 48.42165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.155936, - 48.732681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.32811, - 48.655931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.703044, - 48.482021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*128*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.147928, - 48.551281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*129*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0058, - 48.350601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.0058, - 48.350601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.591516, - 48.176651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.591516, - 48.176651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.869428, - 48.629478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.824075, - 48.648033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.869428, - 48.629478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.26435, - 48.52913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.26435, - 48.52913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.9103, - 48.401482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.9103, - 48.401482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.657751, - 48.42165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.316225, - 48.234554 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.32811, - 48.655931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.155936, - 48.732681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.824075, - 48.648033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.792394, - 48.482624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.103162, - 48.788181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.103162, - 48.788181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-08-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.57723, - 48.53167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.096286, - 48.224899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.043485, - 48.778999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.043485, - 48.778999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.633645, - 48.359794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.792394, - 48.482624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.633645, - 48.359794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.57723, - 48.53167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*125*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.792451, - 48.488029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187334, - 48.273865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*122*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.313114, - 48.242321 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*124*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.792451, - 48.488029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4236, - 48.18869 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200046175", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 22", - "ref": "FR*SOD*S*SDE2*123*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.261381, - 48.444599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.072221, - 48.509758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.052872, - 48.515488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*71*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.052872, - 48.515488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*71*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.052872, - 48.515488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*71*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.072221, - 48.509758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*70*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.255886, - 48.453716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.255886, - 48.453716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*69*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.251662, - 48.449455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.068542, - 48.511307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.261381, - 48.444599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*68*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.052872, - 48.515488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*71*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.750491, - 48.474991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.068542, - 48.511307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*72*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.057633, - 48.091808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.057633, - 48.091808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*73*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.338243, - 48.000721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.338243, - 48.000721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*74*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.750491, - 48.474991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*75*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.717236, - 48.645733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.717236, - 48.645733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*76*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.89678, - 48.301083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.574715, - 48.587631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.523272, - 48.570396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.89678, - 48.301083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*77*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.251662, - 48.449455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*67*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.750712, - 48.362984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.574715, - 48.587631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*66*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.763813, - 48.448708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.280342, - 47.796131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.640213, - 48.467697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.280342, - 47.796131 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*54*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.709654, - 48.667439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.709654, - 48.667439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.411448, - 48.633446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.411448, - 48.633446 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*56*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.160853, - 48.328011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.160853, - 48.328011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*57*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.750712, - 48.362984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*58*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.167864, - 47.845467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.167864, - 47.845467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.214177, - 48.370193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.214177, - 48.370193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*60*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.367066, - 48.644726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.367066, - 48.644726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.374469, - 48.471878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.374469, - 48.471878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.315567, - 48.427998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.315567, - 48.427998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*63*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.977736, - 47.909428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.977736, - 47.909428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*64*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.763813, - 48.448708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*65*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.523272, - 48.570396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*78*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.565287, - 48.467354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.640213, - 48.467697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*79*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.836316, - 47.906761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.80166, - 47.889305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.80166, - 47.889305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.878658, - 48.551712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*95*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.878658, - 48.551712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*95*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.582887, - 47.900269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.582887, - 47.900269 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*96*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.584976, - 47.868935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*97*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.584976, - 47.868935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*97*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.565287, - 48.467354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.631332, - 47.812168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.631332, - 47.812168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*99*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.83211, - 48.58287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.83211, - 48.58287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.817576, - 48.575111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.817576, - 48.575111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*101*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.833975, - 48.578419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*102*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.833975, - 48.578419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.833975, - 48.578419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*102*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.833975, - 48.578419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*102*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.833975, - 48.578419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*102*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.833975, - 48.578419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*102*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.791397, - 47.818333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.415043, - 47.93594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.836316, - 47.906761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.30713, - 48.383247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*92*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.64612, - 48.469227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.30713, - 48.383247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*92*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.64612, - 48.469227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*80*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.461408, - 48.28619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.461408, - 48.28619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*81*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.836133, - 48.13726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.836133, - 48.13726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*82*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.770224, - 48.360584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.770224, - 48.360584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*83*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.176747, - 48.293953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.176747, - 48.293953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.335426, - 48.561989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.335426, - 48.561989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*85*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.256995, - 48.065521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.256995, - 48.065521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*86*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.320383, - 48.573498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.320383, - 48.573498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*87*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.64312, - 48.374123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.64312, - 48.374123 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*88*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.211916, - 48.098244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.211916, - 48.098244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*89*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.174933, - 47.832439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.174933, - 47.832439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*90*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.478167, - 47.937088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.478167, - 47.937088 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.415043, - 47.93594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*53*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.595497, - 48.275364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.5986, - 48.428299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*52*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.002561, - 48.101925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.326797, - 48.664791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.375518, - 47.817368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.595497, - 48.275364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*15*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.91355, - 48.667358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.91355, - 48.667358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.539367, - 48.275612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*17*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.539367, - 48.275612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*17*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.576228, - 48.277264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.576228, - 48.277264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*18*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.139651, - 48.159222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.139651, - 48.159222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.093426, - 48.194569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.093426, - 48.194569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*20*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05061, - 48.21619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*21*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05061, - 48.21619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*21*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05061, - 48.21619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*21*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.05061, - 48.21619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*21*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.818973, - 48.192974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.818973, - 48.192974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*22*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.104016, - 48.663445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.104016, - 48.663445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*23*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.586496, - 47.795624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.586496, - 47.795624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*24*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.326797, - 48.664791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*14*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.002561, - 48.101925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.064729, - 47.89743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.955801, - 48.302963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.317977, - 48.245838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.317977, - 48.245838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.440174, - 47.901684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.440174, - 47.901684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.537401, - 48.026707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.537401, - 48.026707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.700252, - 47.93338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.700252, - 47.93338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.706109, - 47.926643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.706109, - 47.926643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.605561, - 47.857525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.605561, - 47.857525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.102162, - 47.871059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.102162, - 47.871059 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.106747, - 47.87693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.106747, - 47.87693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.116132, - 47.876938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.116132, - 47.876938 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.512228, - 48.074905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.512228, - 48.074905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.507157, - 48.49913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.507157, - 48.49913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.955801, - 48.302963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.064729, - 47.89743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.890398, - 47.996445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.5986, - 48.428299 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*52*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.262154, - 48.361095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.165494, - 48.219227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.270626, - 48.397804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.270626, - 48.397804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*41*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.341825, - 48.09568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.341825, - 48.09568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*42*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.330149, - 48.092033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.330149, - 48.092033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.32102, - 48.086506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.32102, - 48.086506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.975574, - 48.104568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.975574, - 48.104568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.024456, - 48.008377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.024456, - 48.008377 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.012943, - 47.895412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.012943, - 47.895412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.011984, - 47.891369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.011984, - 47.891369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*48*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.115754, - 47.910778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.115754, - 47.910778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*49*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.5913, - 48.055546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.5913, - 48.055546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*50*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.583797, - 48.515305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.583797, - 48.515305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*51*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.165494, - 48.219227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*40*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.262154, - 48.361095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*39*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.890398, - 47.996445 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.506578, - 48.2258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.123075, - 47.874435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.123075, - 47.874435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*27*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.956018, - 48.413948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.956018, - 48.413948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*28*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9177, - 47.87339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9177, - 47.87339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.909739, - 47.872265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.909739, - 47.872265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.901737, - 47.921692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*31*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.901737, - 47.921692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*31*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.917199, - 47.870399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.917199, - 47.870399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.924636, - 47.877735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.924636, - 47.877735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*33*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.832747, - 48.060768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.832747, - 48.060768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*34*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.418989, - 48.247986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*35*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.418989, - 48.247986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*35*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.491614, - 48.248337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.491614, - 48.248337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*36*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.507885, - 48.285328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.507885, - 48.285328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*37*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.506578, - 48.2258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*38*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.791397, - 47.818333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*103*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.722911, - 48.403175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.375518, - 47.817368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*104*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.095822, - 48.006672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.552851, - 47.871124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.552851, - 47.871124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.546339, - 47.874336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*176*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.546339, - 47.874336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*176*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.552238, - 47.868786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*177*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.552238, - 47.868786 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*177*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.461947, - 47.860291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*178*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.461947, - 47.860291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*178*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.691156, - 47.843136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*179*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.691156, - 47.843136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*179*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.985369, - 48.724209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.985369, - 48.724209 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.980556, - 48.722633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.980556, - 48.722633 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.829561, - 47.958473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.829561, - 47.958473 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02287, - 47.935459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02287, - 47.935459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*183*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.799367, - 48.153252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*184*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.799367, - 48.153252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*184*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.843285, - 48.575516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*185*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.843285, - 48.575516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*185*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.61037, - 48.567944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*186*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.095822, - 48.006672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.093842, - 48.00309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.98622, - 48.686703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*187*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.093842, - 48.00309 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.119875, - 48.11594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.536914, - 47.959827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.536914, - 47.959827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*161*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.083755, - 48.031239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*164*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.083755, - 48.031239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*164*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.083755, - 48.031239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*164*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.083755, - 48.031239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*164*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.1279, - 47.986479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.1279, - 47.986479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*165*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.093657, - 48.013607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.093657, - 48.013607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.095428, - 48.010571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.095428, - 48.010571 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.106417, - 47.999485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.106417, - 47.999485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*168*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.102052, - 47.999451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.102052, - 47.999451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.104504, - 47.993977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.104504, - 47.993977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08335, - 47.984688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.08335, - 47.984688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.072012, - 47.9832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.072012, - 47.9832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.61037, - 48.567944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*186*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.98622, - 48.686703 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*187*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.414799, - 48.080925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.623005, - 47.958649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*201*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.078652, - 48.689281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*202*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.078652, - 48.689281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*202*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02585, - 48.702991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.02585, - 48.702991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.538179, - 48.552601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*204*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.538179, - 48.552601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*204*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.678202, - 48.433521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*205*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.678202, - 48.433521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*205*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-06-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.52067, - 47.90242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.52067, - 47.90242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.051803, - 47.999352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*208*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.051803, - 47.999352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*208*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.203651, - 48.472099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*209*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.203651, - 48.472099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*209*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.757681, - 48.521224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*210*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.757681, - 48.521224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*210*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.317882, - 48.082424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*211*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.317882, - 48.082424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.317882, - 48.082424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.317882, - 48.082424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*211*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.832769, - 47.960244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*212*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.832769, - 47.960244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*212*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.650071, - 48.048437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 29", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.623005, - 47.958649 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*201*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.851396, - 47.854599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*200*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.988846, - 48.678314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*188*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.851396, - 47.854599 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*200*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.988846, - 48.678314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*188*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.620963, - 48.433746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*189*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.620963, - 48.433746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*189*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.067573, - 48.241135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.067573, - 48.241135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.946151, - 48.521469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*191*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.946151, - 48.521469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*191*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.885427, - 48.164818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*192*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.885427, - 48.164818 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*192*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.850635, - 47.855431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*193*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.850635, - 47.855431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*193*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.937679, - 47.966953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.937679, - 47.966953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.354569, - 48.231087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.354569, - 48.231087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.702015, - 48.025848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.702015, - 48.025848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.276989, - 47.79454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*197*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.276989, - 47.79454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*197*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.079161, - 48.405582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*198*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.079161, - 48.405582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*198*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.650071, - 48.048437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OUEST CHARGE - 29", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.862684, - 48.106586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*199*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.119875, - 48.11594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.862684, - 48.106586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*199*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.414799, - 48.080925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.221155, - 48.125313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.733003, - 48.432934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.733003, - 48.432934 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.658987, - 48.542091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.658987, - 48.542091 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*120*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.699928, - 48.557819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.699928, - 48.557819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*121*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.289413, - 48.48246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*122*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.289413, - 48.48246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*122*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.311651, - 48.538128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.311651, - 48.538128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*123*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.675449, - 48.621498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.675449, - 48.621498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*124*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.605536, - 48.566917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*125*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.326583, - 48.043823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.989944, - 48.631069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.989944, - 48.631069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*126*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.176036, - 48.658459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.176036, - 48.658459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*127*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.822053, - 48.640057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.822053, - 48.640057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.792689, - 48.696903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.792689, - 48.696903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.719758, - 48.341545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.221155, - 48.125313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*118*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.82614, - 48.253262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.712219, - 48.520206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.82614, - 48.253262 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*117*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.430538, - 48.497616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.045589, - 47.906719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.045589, - 47.906719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.969462, - 48.225613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.969462, - 48.225613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.874457, - 48.5084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.874457, - 48.5084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.228642, - 47.824329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.228642, - 47.824329 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*109*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.27096, - 47.981709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.27096, - 47.981709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.190454, - 48.07729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.190454, - 48.07729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*111*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.153028, - 47.935135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.153028, - 47.935135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*112*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.284916, - 47.841686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.284916, - 47.841686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*113*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.235011, - 48.180679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.235011, - 48.180679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*114*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.207378, - 48.016224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.207378, - 48.016224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*115*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.280146, - 47.901947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.280146, - 47.901947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*116*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.719758, - 48.341545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*130*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.605536, - 48.566917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*125*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.712219, - 48.520206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*131*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.038069, - 48.578644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.112415, - 48.605137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.112415, - 48.605137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.424026, - 47.985855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*147*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.424026, - 47.985855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*147*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.18113, - 47.979057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.18113, - 47.979057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*148*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.752462, - 47.856537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.752462, - 47.856537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*149*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.486429, - 48.041206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.085618, - 48.553905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.488049, - 48.042675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*151*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.488049, - 48.042675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*151*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.224181, - 47.866322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.224181, - 47.866322 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*152*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.224541, - 47.862942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.224541, - 47.862942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*153*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.224656, - 47.870659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.224656, - 47.870659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*154*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.217891, - 47.88036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*155*1*_*_", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.217891, - 47.88036 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*155*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.764534, - 48.51339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.764534, - 48.51339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.326583, - 48.043823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*157*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.038069, - 48.578644 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.486429, - 48.041206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*150*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.451106, - 48.531193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.70173, - 48.567532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.451106, - 48.531193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*144*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.085618, - 48.553905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*132*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.503862, - 48.606556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.503862, - 48.606556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*133*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.555913, - 48.619442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.555913, - 48.619442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*134*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.602025, - 48.525082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.602025, - 48.525082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*135*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.486453, - 48.014278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.486453, - 48.014278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*136*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.299168, - 48.608871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.299168, - 48.608871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*137*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.70173, - 48.567532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*138*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.430538, - 48.497616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*105*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.722911, - 48.403175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*139*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.211415, - 48.513668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.211415, - 48.513668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*140*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.211429, - 48.617405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.211429, - 48.617405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*141*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.68705, - 48.50914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.68705, - 48.50914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*142*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.790468, - 48.534348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.790468, - 48.534348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "252901145", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "OUEST CHARGE - 29", - "ref": "FR*SOD*S*SD29*143*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498428, - 47.29969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "304602956", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SUPER U CARQUEFOU", - "ref": "FR*SOD*S*OTHR*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498428, - 47.29969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "304602956", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SUPER U CARQUEFOU", - "ref": "FR*SOD*S*OTHR*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498428, - 47.29969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "304602956", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SUPER U CARQUEFOU", - "ref": "FR*SOD*S*OTHR*25*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.498428, - 47.29969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Sodetrel", - "owner:ref:FR:SIREN": "304602956", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SUPER U CARQUEFOU", - "ref": "FR*SOD*S*OTHR*25*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8255189491394663, - 50.13950991485836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "L'AERODROME DE LA BAIE DE SOMME", - "owner:ref:FR:SIREN": "824255509", - "email": "hotelrestaurant@laerodrome.com", - "network": "AERODROME BAIE SOMME", - "ref": "EVB-P21151738", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8255189491394663, - 50.13950991485836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "L'AERODROME DE LA BAIE DE SOMME", - "owner:ref:FR:SIREN": "824255509", - "email": "hotelrestaurant@laerodrome.com", - "network": "AERODROME BAIE SOMME", - "ref": "EVB-P21151738", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8255189491394663, - 50.13950991485836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "L'AERODROME DE LA BAIE DE SOMME", - "owner:ref:FR:SIREN": "824255509", - "email": "hotelrestaurant@laerodrome.com", - "network": "AERODROME BAIE SOMME", - "ref": "EVB-P21151738", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.381371271658948, - 46.073133287506614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kotelon", - "owner:ref:FR:SIREN": "431559483", - "email": "marc.kotelon@montblanc-hotel.fr", - "phone": "0450038655", - "network": "Hôtel Mont Blanc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.381371271658948, - 46.073133287506614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Kotelon", - "owner:ref:FR:SIREN": "431559483", - "email": "marc.kotelon@montblanc-hotel.fr", - "phone": "0450038655", - "network": "Hôtel Mont Blanc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 52.3406297, - 4.858677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "385279609", - "email": "frsupport@ev-box.com", - "network": "VOLKSWAGEN", - "ref": "NL*EVB*EA2AXUYIOTQ4GFABUPEAMAMGIEA ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1659997, - 50.714811999999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SCI 35 RUE DE ROUBAIX", - "ref": "01FMQAER19NXCXX01V4RXNQ0GM", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.069912308187833, - 44.146517682124674 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "809313760", - "email": "frsupport@ev-box.com", - "network": "HOTEL B&B", - "ref": "NL*EVB*EP6XVKPHR4IIYT5W23IGVVCGOBQ ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2021-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3328996, - 43.8136602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "338773492", - "email": "frsupport@ev-box.com", - "network": "SKODA", - "ref": "NL*EVB*EBP7OCKH3I4TGNGRKJ5VPBEHTKA ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0814445, - 44.1386705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "502997935", - "email": "frsupport@ev-box.com", - "phone": "0141447047", - "network": "SANYA MARKET", - "ref": "NL*EVB*EDZYHHJBOU2V5KSR5P4S3LGEN24", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.536132, - 45.117992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "web services advenir", - "owner:ref:FR:SIREN": "889299442", - "email": "advenir@avere-France.org", - "phone": "0153250068", - "network": "Le Relais du Monarque", - "ref": "2f0a5d72-0b1b-46dd-9e06-023b889cc1c6", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37, - 46.67 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Rencontre-handi", - "owner:ref:FR:SIREN": "813050820", - "email": "aspad71@orange.fr", - "phone": "0385783358", - "network": "Rencontre-handi", - "ref": "01FKFZCF7XA9CY23G6VN23R8DD", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-FR 09:00-17:00", - "start_date": "2021-03-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.87, - 43.96 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "15ff2740-4afd-44de-9724-6731c01c34a2", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8366466, - 50.840108099999 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "LA FERME DU GRAND AIR", - "ref": "01FM50FFQNTVYYGG2XQ204QY9P", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.662474, - 50.885777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "BIG MAT", - "ref": "01FM5610WAG9Q6AJNYMFE4M8MT", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.52, - 48.7 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Le Manoir de l'Isle", - "owner:ref:FR:SIREN": "842369456", - "email": "contact@manoirdelisle.com", - "phone": "0661150201", - "network": "Manoir de l isle", - "ref": "01FM50GFVBTBH0BZN9YWKN8QEM", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.132099, - 50.6463447 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SC FRANETTI", - "ref": "01FM9M4GTK9ASH1XE898YWDPHX", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7997062, - 50.2659007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DACIA BEAURAINS", - "ref": "01FMA7H8R6CNN0BVN1QN3KKJ8Y", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.6550211, - 50.5201558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "SCI CD", - "ref": "01FMKXHPWSE1JVWBB6W02W3YMP", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.6969556979136504, - 45.132872088016235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NOVABIO", - "owner:ref:FR:SIREN": "497795005", - "email": "novabio.labo@laposte.net", - "network": "NOVABIO", - "ref": "EVB-P1942027", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:00-17:00", - "start_date": "2021-12-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85759376, - 46.82488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "PROVIRIDIS", - "owner:ref:FR:SIREN": "750938722", - "email": "hello@v-gas.fr", - "phone": "06 71 32 75 81", - "network": "Z-E-N", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.99, - 45.63 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "409596244", - "email": "emilio@electromaps.com", - "phone": "+34 931.574.967", - "network": "Royan Ravalement Services", - "ref": "ebb78fda-b81d-441a-a97f-c0931664110e", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9, - 45.68 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Societe moderne d'isolation", - "owner:ref:FR:SIREN": "332455427", - "email": "mmartignoni@smiso.com", - "phone": "0472901949", - "network": "SMI", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", - "start_date": "2022-01-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.13, - 48.86 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ABSOLUT CONCEPT", - "owner:ref:FR:SIREN": "490792348", - "email": "duquesne@absolutconcept.com", - "phone": "0139157451", - "network": "Recharge Absolut", - "ref": "a913eed7-13a3-448e-b1d3-59a63f4791fc", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00,Th 08:00-17:00", - "start_date": "2022-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.61, - 48.66 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "343172227", - "email": "exploitation@freshmile.com", - "phone": "03 68 78 14 35 ", - "network": "FRESHMILE", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.02, - 48.53 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EDF", - "owner:ref:FR:SIREN": "200034460", - "email": "rcgc@edf.fr", - "phone": "0426700227", - "network": "EDF", - "ref": "ccf6edd2-80ae-4131-9af8-cc81544f8a98 ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", - "start_date": "2021-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.96, - 45.955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "823893938", - "email": "emilio@electromaps.com", - "phone": "+34 931 190 242 ", - "network": "SAP", - "ref": "FR*MAP*E000016296852", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.58, - 44.16 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "409966223", - "email": "oscar@electromaps.com", - "phone": "+34 931.574.967 ", - "network": "Le Temps Des Cerises", - "ref": "48e9e0f4-b6bb-4d35-bb14-e17c5a8bc1cc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47, - 49.06 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bénédictines du Sacré-Coeur de Montmartre", - "owner:ref:FR:SIREN": "785032780", - "email": "economatbscm@orange.fr", - "phone": "0146069000", - "network": "BSCM", - "ref": "01FRNHTR2SJJCS1AB2ZGKB7D30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-17:00", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.47, - 49.06 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Bénédictines du Sacré-Coeur de Montmartre", - "owner:ref:FR:SIREN": "785032780", - "email": "economatbscm@orange.fr", - "phone": "0146069000", - "network": "BSCM", - "ref": "01FRNHTR2SJJCS1AB2ZGKB7D30", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-17:00", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.93, - 45.95 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SAS CHATEAU DE MEMANAT", - "owner:ref:FR:SIREN": "824075683", - "email": "info@chateaudememenat.com", - "phone": "0786661820", - "network": "CHATEAU DE MEMANAT", - "ref": "367e7452-927d-4bf1-9afb-5084ebd8f56e", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1, - 45.63 - ] - }, - "properties": { - "amenity": "charging_station", - "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": "d67cd02c-2a23-4dc1-9b4d-7d90d795df3b", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 10:00-19:00", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95, - 44.96 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Electromaps", - "owner:ref:FR:SIREN": "905250809", - "email": "oscar@electromaps.com", - "phone": "+34 931 574 967", - "network": "Réseau de recharge Soulier", - "ref": "48752c4b-2ca2-40af-b488-b5aa3fd4355d", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25, - 48.7 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "alterna energie", - "owner:ref:FR:SIREN": "200034460", - "email": "electricite@alterna-energie.fr", - "phone": "0179356309", - "network": "alterna energie", - "ref": "aceaf454-19e2-4da1-96dd-d7fdc44a72d1 ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", - "start_date": "2021-10-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.68, - 48.23 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "La jardinerie d'aveze sarl", - "owner:ref:FR:SIREN": "479271074", - "email": "contact@jardinerieaveze.fr", - "phone": "0243600020", - "network": "Jardinerie d'Aveze", - "ref": "2e0e3191-363c-47b3-b3b4-975a51ad1fa9", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 09:30-12:00,Mo-Sa 14:00-18:30,Su 10:00-12:30,Su 14:30-18:30", - "start_date": "2022-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.79, - 48.68 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENNESSER ET FILS", - "owner:ref:FR:SIREN": "301466967", - "email": "info@peinture-ennesser.com", - "phone": "0388513049", - "network": "Peinture Ennesser", - "ref": "69ad8ecf-ae87-4e0b-98f1-680d006ae013", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.51344, - 43.28654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "VIRTA", - "owner:ref:FR:SIREN": "072802689", - "email": "philippe.voisin@virta.global", - "phone": "0612912997", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.51344, - 43.28654 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "VIRTA", - "owner:ref:FR:SIREN": "072802689", - "email": "philippe.voisin@virta.global", - "phone": "0612912997", - "network": "FULGURA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-18:00", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6353802, - 49.644069 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "484429550", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "AUTO SERVICES PIXIEN", - "ref": "FRFR1ELKDM1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690897555220402, - 45.52876535004003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U PONT DE BEAUVOISIN", - "ref": "FRSUAP38315A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4017290030274534, - 49.18274284714659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U CAEN", - "ref": "FRSUAP14201A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4017290030274534, - 49.18274284714659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U CAEN", - "ref": "FRSUAP14201A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4017290030274534, - 49.18274284714659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U CAEN", - "ref": "FRSUAP14201A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4017290030274534, - 49.18274284714659 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U CAEN", - "ref": "FRSUAP14201A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4451526, - 44.8254186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U FARGUES ST HILAIRE", - "ref": "FRSUAP33165A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4451526, - 44.8254186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U FARGUES ST HILAIRE", - "ref": "FRSUAP33165A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4451526, - 44.8254186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U FARGUES ST HILAIRE", - "ref": "FRSUAP33165A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.559326, - 44.975229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LAMASTRE", - "ref": "FRSUAP07129A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4451526, - 44.8254186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U FARGUES ST HILAIRE", - "ref": "FRSUAP33165A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4451526, - 44.8254186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U FARGUES ST HILAIRE", - "ref": "FRSUAP33165A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.707232, - 43.929095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U GANGES", - "ref": "FRSUAP34111A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.707232, - 43.929095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U GANGES", - "ref": "FRSUAP34111A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.707232, - 43.929095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U GANGES", - "ref": "FRSUAP34111A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07183, - 45.43232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LA TOURETTE", - "ref": "FRSUAP42312A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07183, - 45.43232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LA TOURETTE", - "ref": "FRSUAP42312A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07183, - 45.43232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LA TOURETTE", - "ref": "FRSUAP42312A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4451526, - 44.8254186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U FARGUES ST HILAIRE", - "ref": "FRSUAP33165A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690897555220402, - 45.52876535004003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U PONT DE BEAUVOISIN", - "ref": "FRSUAP38315A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690897555220402, - 45.52876535004003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U PONT DE BEAUVOISIN", - "ref": "FRSUAP38315A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690897555220402, - 45.52876535004003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U PONT DE BEAUVOISIN", - "ref": "FRSUAP38315A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593537, - 46.734241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U AIZENAY", - "ref": "FRSUAP85003A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7480292628930094, - 47.4716214490022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U BLAIN", - "ref": "FRSUAP44015A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7480292628930094, - 47.4716214490022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U BLAIN", - "ref": "FRSUAP44015A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7480292628930094, - 47.4716214490022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U BLAIN", - "ref": "FRSUAP44015A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7480292628930094, - 47.4716214490022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U BLAIN", - "ref": "FRSUAP44015A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7480292628930094, - 47.4716214490022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U BLAIN", - "ref": "FRSUAP44015A", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7480292628930094, - 47.4716214490022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U BLAIN", - "ref": "FRSUAP44015A", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.690897555220402, - 45.52876535004003 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "HYPER U PONT DE BEAUVOISIN", - "ref": "FRSUAP38315A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.07183, - 45.43232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LA TOURETTE", - "ref": "FRSUAP42312A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.559326, - 44.975229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LAMASTRE", - "ref": "FRSUAP07129A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12869, - 46.22774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST LEGER DE LA MARTINIERE", - "ref": "FRSUAP79264A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59980393711, - 42.84540556623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U TARASCON SUR ARIEGE", - "ref": "FRSUAP09306A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59980393711, - 42.84540556623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U TARASCON SUR ARIEGE", - "ref": "FRSUAP09306A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59980393711, - 42.84540556623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U TARASCON SUR ARIEGE", - "ref": "FRSUAP09306A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59980393711, - 42.84540556623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U TARASCON SUR ARIEGE", - "ref": "FRSUAP09306A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59980393711, - 42.84540556623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U TARASCON SUR ARIEGE", - "ref": "FRSUAP09306A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.442376, - 44.911404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LE CHEYLARD", - "ref": "FRSUAP07064A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.315905, - 48.338735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MJS DISTRIBUTION", - "ref": "FRSUAP67320A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.315905, - 48.338735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MJS DISTRIBUTION", - "ref": "FRSUAP67320A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.315905, - 48.338735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MJS DISTRIBUTION", - "ref": "FRSUAP67320A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2623206, - 46.4304455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U VIVONNE", - "ref": "FRSUAP86293A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2623206, - 46.4304455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U VIVONNE", - "ref": "FRSUAP86293A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2623206, - 46.4304455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U VIVONNE", - "ref": "FRSUAP86293A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.2623206, - 46.4304455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U VIVONNE", - "ref": "FRSUAP86293A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.812625, - 45.649787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SAS VERNAIDIS", - "ref": "FRSUAP69260A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.812625, - 45.649787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SAS VERNAIDIS", - "ref": "FRSUAP69260A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.59980393711, - 42.84540556623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U TARASCON SUR ARIEGE", - "ref": "FRSUAP09306A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.315905, - 48.338735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "MJS DISTRIBUTION", - "ref": "FRSUAP67320A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12869, - 46.22774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST LEGER DE LA MARTINIERE", - "ref": "FRSUAP79264A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.442376, - 44.911404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LE CHEYLARD", - "ref": "FRSUAP07064A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.442376, - 44.911404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LE CHEYLARD", - "ref": "FRSUAP07064A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12869, - 46.22774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST LEGER DE LA MARTINIERE", - "ref": "FRSUAP79264A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.09085, - 45.60781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U SAVIGNEUX", - "ref": "FRSUAP42299A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.430385, - 46.480609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST BONNET DE JOUX", - "ref": "FRSUAP71394A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.430385, - 46.480609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST BONNET DE JOUX", - "ref": "FRSUAP71394A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.430385, - 46.480609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST BONNET DE JOUX", - "ref": "FRSUAP71394A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.430385, - 46.480609 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST BONNET DE JOUX", - "ref": "FRSUAP71394A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.12869, - 46.22774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U ST LEGER DE LA MARTINIERE", - "ref": "FRSUAP79264A", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.442376, - 44.911404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "E-TOTEM", - "email": "contact@e-totem.fr", - "network": "SUPER U LE CHEYLARD", - "ref": "FRSUAP07064A", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1165963, - 50.6565678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "DLM MARCQ EN BAROEUL", - "ref": "4ab443d0-7c04-4397-b176-e7a78803f42a", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6595715141555814, - 45.749626602859486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "4M RETAIL", - "owner:ref:FR:SIREN": "879220374", - "email": "contact@mambhome.com", - "network": "4M RETAIL", - "ref": "EVB-DC422600001B", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 9:00-17:00", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6595715141555814, - 45.749626602859486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "4M RETAIL", - "owner:ref:FR:SIREN": "879220374", - "email": "contact@mambhome.com", - "network": "4M RETAIL", - "ref": "EVB-DC422600001", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 9:00-17:00", - "start_date": "2022-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.05901, - 49.099573 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FRESHMILE", - "owner:ref:FR:SIREN": "655781276", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "FOURNIER SAS", - "ref": "71d69ca2-9eb4-11ec-b909-0242ac120002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3617357269911046, - 43.20905731878834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Securecharge", - "owner:ref:FR:SIREN": "802704445", - "email": "contact@securecharge.com", - "network": "Hôtel du Pont Vieux - Securecharge", - "ref": "Securecharge-PONCAR-HBS-1", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.45, - 43.61 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTROMAPS", - "owner:ref:FR:SIREN": "831530365", - "email": "oscar@electromaps.com", - "phone": "06 17 67 06 24", - "network": "PULLMAN", - "ref": "02af2893-256f-4124-8d58-c728dc38f720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2, - 42.45 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "F.B. AUTOMOBILES", - "owner:ref:FR:SIREN": "844623611", - "email": "filippi.gl@gmail.com", - "phone": "0675357392", - "network": "F.B. AUTOMOBILES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Sa 09:00-12:00", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0973151, - 50.5443626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ma Borne Auto", - "owner:ref:FR:SIREN": "880217922", - "email": "e.barre@maborneauto.com", - "phone": "361626161", - "network": "FRANCE ENVIRONNEMENT", - "ref": "b902fcd2-647f-4e69-9afa-87704712effe", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.494, - 48.9381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "434036653", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "INTERMARCHE", - "ref": "FRFR1ENDBC1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.86, - 43.96 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Thibal Distribution", - "owner:ref:FR:SIREN": "509605184", - "email": "sdavid@thibal-distribution.fr", - "phone": "0565490240", - "network": "Borne de recharge gratuite", - "ref": "868b9791-607e-4ba5-be0a-612b37168a56", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 13:30-18:00,Th 07:30-12:00", - "start_date": "2021-12-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.61, - 46.34 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ekoplug", - "owner:ref:FR:SIREN": "898168273", - "email": "contact@ekoplug.fr", - "phone": "0980770104", - "network": "aucun", - "ref": "a609bf84-17a2-4583-80fe-2f09f0659215", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.149723, - 44.2371439 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "22504292-faaf-4219-8d24-8f822f74830c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "06:00-00:00", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63, - 48.89 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EDF", - "owner:ref:FR:SIREN": "746951292", - "email": "edfentreprises-ile-de-france-31@edf.fr", - "phone": "0812041592", - "network": "EDF", - "ref": "a572785d-70d9-4841-87bb-551cd644d1fc", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", - "start_date": "2021-12-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.63, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ENERGEM", - "owner:ref:FR:SIREN": "849442132", - "email": "contact@energem.fr", - "phone": "0969390239", - "network": "ENERGEM", - "ref": "c817492c-df96-4302-ae12-7d05f0177858", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", - "start_date": "2021-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.350366, - 45.982475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "451766877", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC DE PRAGNAT", - "ref": "FRECN0138", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.350366, - 45.982475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "451766877", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC DE PRAGNAT", - "ref": "FRECN0137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3751, - 49.1485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Daltoner Caen", - "owner:ref:FR:SIREN": "751925579", - "email": "denis.lot@daltoner.fr", - "phone": "0608471175", - "network": "Daltoner Caen", - "ref": "28f4cde6-de43-434f-806c-4d09b2b930e3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr09:00-12:30,mo-fr14:00-18:00", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.929144, - 48.29733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.397318, - 48.155596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402955, - 48.155813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.402955, - 48.155813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93954, - 48.296963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93954, - 48.296963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.93954, - 48.296963 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.947992, - 47.848493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.929144, - 48.29733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.947992, - 47.848493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.972928, - 48.474519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.947992, - 47.848493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.912477, - 47.94467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.912477, - 47.94467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.717961, - 47.834389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.397318, - 48.155596 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.886473, - 48.097822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.972928, - 48.474519 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707706, - 47.826223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.886473, - 48.097822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.813204, - 48.411734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.813204, - 48.411734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.522439, - 47.873144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.522439, - 47.873144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.336777, - 48.417355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.336777, - 48.417355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498669, - 48.254747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.498669, - 48.254747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.03395, - 48.230821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.03395, - 48.230821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497452, - 48.437096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497452, - 48.437096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.717961, - 47.834389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.78852, - 48.09876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.707706, - 47.826223 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416529, - 47.934222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.868946, - 48.020721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.868946, - 48.020721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6299366, - 48.4030159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6299366, - 48.4030159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.643338, - 48.085018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.643338, - 48.085018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.684591, - 47.829669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.684591, - 47.829669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.684591, - 47.829669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.689528, - 47.823095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.689528, - 47.823095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.899746, - 48.182806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3661645, - 48.2511046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3661645, - 48.2511046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.416529, - 47.934222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.740993, - 48.054082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048258, - 47.895574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.048258, - 47.895574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.581051, - 48.020476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.581051, - 48.020476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69995, - 48.074663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.69995, - 48.074663 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.393857, - 47.87564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.393857, - 47.87564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.755338, - 48.090244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.755338, - 48.090244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.755338, - 48.090244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.755338, - 48.090244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.755338, - 48.090244 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.78852, - 48.09876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.740993, - 48.054082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.899746, - 48.182806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.740993, - 48.054082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.058704, - 48.437891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.439627, - 47.791279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.055715, - 47.793557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.055715, - 47.793557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.198609, - 48.460889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.198609, - 48.460889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.058704, - 48.437891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.556975, - 48.1350588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.611277, - 48.297358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.556975, - 48.1350588 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.989022, - 48.385509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.989022, - 48.385509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.551923, - 47.95096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.551923, - 47.95096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.622363, - 48.300891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.439627, - 47.791279 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8610071, - 48.34244771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8610071, - 48.34244771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.908136, - 48.137358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.908136, - 48.137358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0988, - 48.399713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0988, - 48.399713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.351483, - 48.098848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.351483, - 48.098848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40551, - 47.982498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.40551, - 47.982498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.475751, - 48.039426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.280608, - 48.339712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.280608, - 48.339712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677286, - 47.922081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7614552, - 48.0744727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.677286, - 47.922081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.622363, - 48.300891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.475751, - 48.039426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.611277, - 48.297358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7857756, - 48.0774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.790317, - 48.05511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612687, - 48.300496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7614552, - 48.0744727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.790317, - 48.05511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7716565, - 48.0655286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7716565, - 48.0655286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7710749, - 48.077605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7710749, - 48.077605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7830825, - 48.0800885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7830825, - 48.0800885 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7898318, - 48.0820463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7898318, - 48.0820463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7898318, - 48.0820463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7898318, - 48.0820463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.790317, - 48.05511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7857756, - 48.0774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9359299, - 48.060102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.663407, - 48.194942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7857756, - 48.0774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612687, - 48.300496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718523, - 48.121773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718523, - 48.121773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.9359299, - 48.060102 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.663407, - 48.194942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.747181, - 47.871029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7857756, - 48.0774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7857756, - 48.0774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612687, - 48.300496 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7857756, - 48.0774643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.747181, - 47.871029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "200082477", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "TEM53", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.804942, - 43.837642 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "809172166", - "operator": "electromaps", - "email": "support@electromaps.com", - "phone": "+33 1 76 34 09 41", - "network": "FGS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 00:00-12:00,Mo-Fr 12:00-23:59,Th 00:00-23:59", - "start_date": "2021-12-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.51225, - 48.89915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Grunzke Beate", - "owner:ref:FR:SIREN": "821842481", - "email": "bg@lavicomterie.com", - "phone": "0681114330", - "network": "Gite La Vicomterie", - "ref": "01FS525YRDQ5SRXF0GHHFJ4YXE", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "mo-fr 09:00-12:00,mo-fr 14:00-18:00", - "start_date": "2022-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.876677, - 47.063467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83442, - 47.0787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.879119, - 47.060109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.876677, - 47.063467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.897106, - 47.048993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.897106, - 47.048993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87928, - 47.058334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.870702, - 47.065228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.870702, - 47.065228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83442, - 47.0787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83442, - 47.0787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.879119, - 47.060109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.885521, - 47.051325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8777, - 47.05618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8777, - 47.05618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.897598, - 47.0604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.897598, - 47.0604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.897598, - 47.0604 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.885521, - 47.051325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.98902199, - 47.711017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.98902199, - 47.711017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.350736, - 47.471672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.350736, - 47.471672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.152529, - 47.308056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.636861, - 47.128778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.636861, - 47.128778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.87928, - 47.058334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.267346, - 47.337381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.152529, - 47.308056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.728161, - 47.209754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.031529, - 47.569042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359873, - 47.57017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.031529, - 47.569042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.031529, - 47.569042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568992, - 47.534362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.568992, - 47.534362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.760868, - 47.348772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.760868, - 47.348772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.570046, - 47.664759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.570046, - 47.664759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.864912, - 47.412434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.864912, - 47.412434 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.267346, - 47.337381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.189167, - 47.286139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.189167, - 47.286139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.189167, - 47.286139 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.018614, - 47.182679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.018614, - 47.182679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488031, - 47.68098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.488031, - 47.68098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.983533, - 47.288395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.983533, - 47.288395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.72744, - 47.218516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.72744, - 47.218516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.728161, - 47.209754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.636861, - 47.128778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.594438, - 47.572185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359873, - 47.57017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.443889, - 47.649611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.443889, - 47.649611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.594438, - 47.572185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.040129, - 47.221793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.040129, - 47.221793 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.047154, - 47.18119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.047154, - 47.18119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116001, - 47.280513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.116001, - 47.280513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.231524, - 47.341862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.231524, - 47.341862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.110091, - 47.182113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.110091, - 47.182113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.600949, - 47.215222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.600949, - 47.215222 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706472, - 47.614389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706472, - 47.614389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.706472, - 47.614389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.921126, - 47.405856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.021022, - 47.291658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.921126, - 47.405856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.868405, - 47.198261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.868405, - 47.198261 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232564, - 47.553524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.232564, - 47.553524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038546, - 47.561347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.443889, - 47.649611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.562288, - 47.61527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.359873, - 47.57017 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.562288, - 47.61527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.393216, - 47.559367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.393216, - 47.559367 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.435457, - 47.418908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.435457, - 47.418908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.119188, - 47.231738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.119188, - 47.231738 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.301931, - 47.189978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.301931, - 47.189978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.301931, - 47.189978 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.27582, - 47.191899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.27582, - 47.191899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273548, - 47.193495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.273548, - 47.193495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.204504, - 47.339675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.204504, - 47.339675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.240833, - 47.671838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.240833, - 47.671838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244611, - 47.672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244611, - 47.672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.244611, - 47.672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.508696, - 47.506721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.508696, - 47.506721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.508696, - 47.506721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.528013, - 47.52875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.528013, - 47.52875 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.038546, - 47.561347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.543489, - 47.480374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.408917, - 47.318639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.551959, - 47.474517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55714, - 47.479224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55714, - 47.479224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.552912, - 47.491494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.552912, - 47.491494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.524759, - 47.487154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.524759, - 47.487154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.484532, - 47.404556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.562786, - 47.474284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.562786, - 47.474284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.546506, - 47.470084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.546506, - 47.470084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.560626, - 47.479479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.560626, - 47.479479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.543489, - 47.480374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.564293, - 47.478727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.564293, - 47.478727 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.553069, - 47.462925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.553069, - 47.462925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55655, - 47.469423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55655, - 47.469423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.539925, - 47.469068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.539925, - 47.469068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.53269521, - 47.46096235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.53269521, - 47.46096235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566538, - 47.473302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.551959, - 47.474517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.555071, - 47.474853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.408917, - 47.318639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.555071, - 47.474853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.021022, - 47.291658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.395715, - 47.457271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.395715, - 47.457271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.954205, - 47.171404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.954205, - 47.171404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.549208, - 47.477254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.549208, - 47.477254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.560842, - 47.49153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.560842, - 47.49153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525074, - 47.45235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525074, - 47.45235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.557721, - 47.466106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.557721, - 47.466106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525074, - 47.45235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525074, - 47.45235 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.557721, - 47.466106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.557721, - 47.466106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.555268, - 47.450911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.555268, - 47.450911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.538226, - 47.46024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.538226, - 47.46024 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.558719, - 47.475807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.558719, - 47.475807 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.565617, - 47.493526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.565617, - 47.493526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.566538, - 47.473302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548205, - 47.474028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548205, - 47.474028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5919, - 47.4801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602694, - 47.316361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602694, - 47.316361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.602694, - 47.316361 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.982642, - 47.209947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.982642, - 47.209947 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.992462, - 47.202836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.992462, - 47.202836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.899778, - 47.251778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.899778, - 47.251778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.899778, - 47.251778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.799876, - 47.50232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.799876, - 47.50232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.936225, - 47.140204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.936225, - 47.140204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.609137, - 47.424319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.609137, - 47.424319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.620562, - 47.409902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.620562, - 47.409902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.065252, - 47.303128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.065252, - 47.303128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.504181, - 47.564662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.504181, - 47.564662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.447423, - 47.357032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.447423, - 47.357032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.408917, - 47.318639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.214121, - 47.438176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.214121, - 47.438176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.237386, - 47.440085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.588673, - 47.505249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5919, - 47.4801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56552, - 47.449193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.56552, - 47.449193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559266, - 47.468648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.559266, - 47.468648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.464037, - 47.211582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.464037, - 47.211582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61754, - 47.51396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61754, - 47.51396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61754, - 47.51396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.588673, - 47.505249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.590732, - 47.506252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.237386, - 47.440085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.590732, - 47.506252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.589951, - 47.499568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.589951, - 47.499568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.101972, - 47.540358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.101972, - 47.540358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.106122, - 47.542556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.106122, - 47.542556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.640257, - 47.4761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.640257, - 47.4761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624794, - 47.474972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.624794, - 47.474972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.484532, - 47.404556 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.978444, - 47.615778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.24442, - 47.265602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02531, - 47.270356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.470786, - 47.520083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.470786, - 47.520083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.383166, - 47.501832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.383166, - 47.501832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.081374, - 47.257962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.081374, - 47.257962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074092, - 47.263713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.074092, - 47.263713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.09440862, - 47.26641082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.09440862, - 47.26641082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.09440862, - 47.26641082 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.090757, - 47.249435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.090757, - 47.249435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.071973, - 47.255545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.071973, - 47.255545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.655311, - 47.383595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.655311, - 47.383595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.866408, - 47.686106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.866408, - 47.686106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869483, - 47.69788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869483, - 47.69788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.869483, - 47.69788 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.872631, - 47.686143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.872631, - 47.686143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.938152, - 47.05595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.02531, - 47.270356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514327, - 47.400515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35941666, - 47.5761667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514327, - 47.400515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.627508, - 47.303931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678323, - 47.483684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.678323, - 47.483684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.805811, - 47.31498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.805811, - 47.31498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.188577, - 47.287826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.188577, - 47.287826 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.710591, - 47.460763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.710591, - 47.460763 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.911004, - 47.092248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.911004, - 47.092248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.994913, - 47.124825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.994913, - 47.124825 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.994046, - 47.123098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.994046, - 47.123098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095972, - 47.122111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095972, - 47.122111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095972, - 47.122111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.703429, - 47.431488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.703429, - 47.431488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.32078, - 47.410707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.32078, - 47.410707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497006, - 47.370575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.497006, - 47.370575 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.514327, - 47.400515 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.938152, - 47.05595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.35941666, - 47.5761667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.458562, - 47.401183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.054743, - 47.239712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.066444, - 47.222944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.066444, - 47.222944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.066444, - 47.222944 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.476858, - 47.331369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.476858, - 47.331369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.208389, - 47.13925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.208389, - 47.13925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.208389, - 47.13925 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83459, - 47.60009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.83459, - 47.60009 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.053695, - 47.393536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.053695, - 47.393536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.535805, - 47.144991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.535805, - 47.144991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.057201, - 47.15339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.057201, - 47.15339 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.891717, - 47.462874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.891717, - 47.462874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.423855, - 47.559531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.423855, - 47.559531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.055683, - 47.325855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.055683, - 47.325855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.703431, - 47.021955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.703431, - 47.021955 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.24442, - 47.265602 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.054743, - 47.239712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.322585, - 47.313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41920244, - 47.56992087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.322585, - 47.313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.41920244, - 47.56992087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.524881, - 47.364289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.524881, - 47.364289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55436, - 47.577466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55436, - 47.577466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.850349, - 47.005484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.850349, - 47.005484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.505148, - 47.265862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.505148, - 47.265862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.468069, - 47.615758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.468069, - 47.615758 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1648, - 47.140958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1648, - 47.140958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.114795, - 47.037548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.114795, - 47.037548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.509598, - 47.456582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.509598, - 47.456582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.482769, - 47.441977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4999, - 47.4474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4999, - 47.4474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.468639, - 47.452278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.468639, - 47.452278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.468639, - 47.452278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7893902, - 47.12269847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7893902, - 47.12269847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.627508, - 47.303931 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.482769, - 47.441977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.458562, - 47.401183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.270014, - 47.401709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.125468, - 47.096814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.862944, - 47.390083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.862944, - 47.390083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.610083, - 47.529708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.610083, - 47.529708 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.615875, - 47.541477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.615875, - 47.541477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.155132, - 47.130526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.155132, - 47.130526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.417993, - 47.745053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.417993, - 47.745053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364194, - 47.699917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364194, - 47.699917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.364194, - 47.699917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.014452, - 47.465705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.014452, - 47.465705 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.552589, - 47.356914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.552589, - 47.356914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.528586, - 47.396864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.528586, - 47.396864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.528586, - 47.396864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.528586, - 47.396864 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.115145, - 47.512698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.115145, - 47.512698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117367, - 47.510163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.125468, - 47.096814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.270014, - 47.401709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117367, - 47.510163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.671603, - 47.560909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.711688, - 47.626205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.661137, - 47.457042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.167665, - 47.341154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.167665, - 47.341154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.978444, - 47.615778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.978444, - 47.615778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.061148, - 47.017144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.061148, - 47.017144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.107774, - 47.380672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.107774, - 47.380672 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.111191, - 47.375752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.111191, - 47.375752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.88562, - 47.522113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.88562, - 47.522113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.429762, - 47.235004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.429762, - 47.235004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7447, - 47.007271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7447, - 47.007271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.891438, - 47.137219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.891438, - 47.137219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.27214, - 47.45545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.27214, - 47.45545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666759, - 47.518528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666759, - 47.518528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.671603, - 47.560909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117367, - 47.510163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.711688, - 47.626205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.956686, - 47.704641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.743992, - 47.525189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.010639, - 47.059889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.010639, - 47.059889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.010639, - 47.059889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.224408, - 47.350746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.224408, - 47.350746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.994333, - 47.101603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.994333, - 47.101603 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.494282, - 47.468264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.494282, - 47.468264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.942527, - 47.029359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.743992, - 47.525189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.014638, - 47.355065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.026729, - 47.059998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.014638, - 47.355065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55671, - 47.422724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.55671, - 47.422724 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7583043, - 47.4097886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.7583043, - 47.4097886 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8330849, - 47.4096558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8330849, - 47.4096558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8330849, - 47.4096558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.100163, - 47.264232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.661137, - 47.457042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.100163, - 47.264232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.026729, - 47.059998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.942527, - 47.029359 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.655694, - 47.358167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525422, - 47.424441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436901, - 47.521476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.436901, - 47.521476 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.655694, - 47.358167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.430275, - 47.49691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.430275, - 47.49691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.676106, - 47.542668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.676106, - 47.542668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.858696, - 47.356033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.858696, - 47.356033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.527251, - 47.437306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.527251, - 47.437306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525422, - 47.424441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.956686, - 47.704641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525211, - 47.442282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.174833, - 47.739167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.525211, - 47.442282 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.808266, - 47.55254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.174833, - 47.739167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.174833, - 47.739167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.808266, - 47.55254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.174242, - 47.739155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.174242, - 47.739155 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688459, - 47.373979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.688459, - 47.373979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.655694, - 47.358167 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "254901309", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SIEML", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430135, - 47.200016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.653893, - 47.414195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432675, - 47.19593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.432675, - 47.19593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.316809, - 47.448766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.316809, - 47.448766 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.319294, - 47.447462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.319294, - 47.447462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.644031, - 47.380213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.452347, - 47.623454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.653893, - 47.414195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6517673, - 47.4118735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6517673, - 47.4118735 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.452347, - 47.623454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.419992, - 47.495595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.419992, - 47.495595 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.307135, - 47.205485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.307135, - 47.205485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.601608, - 46.891832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593407, - 46.887125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430135, - 47.200016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.045511, - 47.585254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399953, - 47.155328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.399953, - 47.155328 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.045511, - 47.585254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.374239, - 47.411751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.933519, - 47.244624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.933519, - 47.244624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75007, - 47.519053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.75007, - 47.519053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.248399, - 47.076892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.248399, - 47.076892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.300524, - 47.101168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.300524, - 47.101168 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.605544, - 47.362484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.605544, - 47.362484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.833976, - 47.627398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.833976, - 47.627398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.866043, - 47.697553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.866043, - 47.697553 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.953551, - 47.518842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.953551, - 47.518842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.416506, - 47.324312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.431082, - 47.325404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.431082, - 47.325404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.416486, - 47.324248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.416486, - 47.324248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.593407, - 46.887125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.372122, - 47.621263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.374239, - 47.411751 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5012, - 47.437694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.152043, - 47.330177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.999195, - 47.064589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.999195, - 47.064589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.346143, - 47.448143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.346143, - 47.448143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.281681, - 47.140034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.281681, - 47.140034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4801865, - 47.4399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5012, - 47.437694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.710672, - 47.381489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.15049, - 47.326231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.710672, - 47.381489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.621944, - 47.574983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.623028, - 47.566145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.623028, - 47.566145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.284393, - 47.346324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.284393, - 47.346324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.027984, - 47.289456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.027984, - 47.289456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.793377, - 47.415736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.152043, - 47.330177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.15049, - 47.326231 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596198, - 46.995125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.861284, - 47.359424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.596198, - 46.995125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.349169, - 47.236772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.349169, - 47.236772 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.816219, - 46.997306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.793926, - 47.0201569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.793926, - 47.0201569 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.385048, - 47.098967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.385048, - 47.098967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.861284, - 47.359424 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.676954, - 47.596801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.486906, - 47.057456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.676954, - 47.596801 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.228706, - 47.430853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.228706, - 47.430853 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.451702, - 47.396174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.451702, - 47.396174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.159951, - 47.482992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.159951, - 47.482992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.158828, - 47.480876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.158828, - 47.480876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.372122, - 47.621263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.486906, - 47.057456 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.793377, - 47.415736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.197509, - 47.621767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40979918, - 47.28394529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.239721, - 47.446531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.761038, - 47.475429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.761038, - 47.475429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.767038, - 47.477271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.767038, - 47.477271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.761649, - 47.472946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.95605, - 47.041524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.95605, - 47.041524 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.18643, - 47.042495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.18643, - 47.042495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.848403, - 47.418352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.848403, - 47.418352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.970647, - 47.41373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.970647, - 47.41373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48938447, - 47.29850005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.48938447, - 47.29850005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.558977, - 47.384186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.558977, - 47.384186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.348234, - 47.319132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.348234, - 47.319132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.290308, - 47.276517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.290308, - 47.276517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.334967, - 47.269653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.334967, - 47.269653 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.490912, - 47.097019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.490912, - 47.097019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09213, - 47.395745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.177845, - 47.370906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.531968, - 47.553973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.531968, - 47.553973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.410933, - 47.081675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.397512, - 47.074964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.397512, - 47.074964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.174149, - 47.367033 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.177845, - 47.370906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.910281, - 47.125105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09213, - 47.395745 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.910281, - 47.125105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.937478, - 47.114005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.937478, - 47.114005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.391569, - 47.429477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.391569, - 47.429477 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.990829, - 47.653232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.990829, - 47.653232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.479942, - 47.279449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.479942, - 47.279449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.039746, - 47.080729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.039746, - 47.080729 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.239721, - 47.446531 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.197509, - 47.621767 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.40979918, - 47.28394529 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.337746, - 47.139538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.88, - 47.288138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.056627, - 47.27916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.056627, - 47.27916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.294157, - 47.39103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.294157, - 47.39103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.512496, - 47.296143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.512496, - 47.296143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.167744, - 47.411584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.167744, - 47.411584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.674989, - 47.667198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.674989, - 47.667198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.074784, - 47.317146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.074784, - 47.317146 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.092474, - 47.340349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.092474, - 47.340349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.057012, - 47.474882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.057012, - 47.474882 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.317223, - 47.657008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.317223, - 47.657008 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388551, - 47.285563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388551, - 47.285563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388497, - 47.285516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388497, - 47.285516 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388422, - 47.28544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.388422, - 47.28544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.88, - 47.288138 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.877391, - 47.290846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.877391, - 47.290846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.379295, - 47.712905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.340886, - 47.178242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.340886, - 47.178242 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.972218, - 47.372136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.972218, - 47.372136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.403169, - 47.701217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.37759, - 47.718186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.37759, - 47.718186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.380766, - 47.720652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.380766, - 47.720652 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.379295, - 47.712905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.282014, - 47.085153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.422498, - 47.124176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.422498, - 47.124176 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.987865, - 47.150435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.987865, - 47.150435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61073, - 47.091867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.61073, - 47.091867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.615587, - 47.090245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.615587, - 47.090245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.279461, - 47.089987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.279461, - 47.089987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.282014, - 47.085153 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.337746, - 47.139538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10196, - 47.115941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.754012, - 46.963716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.385744, - 47.253189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.808674, - 47.103256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.812257, - 47.103159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.812257, - 47.103159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.044815, - 47.208127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.044815, - 47.208127 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.643245, - 47.037744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.643245, - 47.037744 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.640351, - 47.03601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.640351, - 47.03601 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.192189, - 47.441001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.192189, - 47.441001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.014579, - 47.257994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.014579, - 47.257994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.49881, - 47.655756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.49881, - 47.655756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.672813, - 47.262506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.672813, - 47.262506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.938037, - 47.373695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.939955, - 47.358691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.939955, - 47.358691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07738, - 47.550071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.07738, - 47.550071 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590963, - 47.735648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.808674, - 47.103256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.069307, - 47.642319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.069307, - 47.642319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.734586, - 47.113739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.371945, - 47.251305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.484521, - 47.24945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.484521, - 47.24945 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.339434, - 47.083183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.339434, - 47.083183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.727092, - 47.055821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.727092, - 47.055821 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.306585, - 47.399539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.306585, - 47.399539 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.179806, - 47.352483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.179806, - 47.352483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.734586, - 47.113739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.210351, - 47.287351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.404951, - 47.365936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.404951, - 47.365936 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.18292, - 47.523337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.18292, - 47.523337 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.147443, - 47.181975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.147443, - 47.181975 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.425414, - 47.394709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.425414, - 47.394709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.210336, - 47.287378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.210336, - 47.287378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.754012, - 46.963716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.590963, - 47.735648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.305198, - 47.73678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.305198, - 47.73678 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430494, - 46.971725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.268571, - 47.162907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.266139, - 47.16296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.266139, - 47.16296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.032016, - 47.386962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.032016, - 47.386962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.028215, - 47.468655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.028215, - 47.468655 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.704934, - 47.554354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.704934, - 47.554354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.430494, - 46.971725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.483028, - 47.344527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.7441279, - 47.29341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.737473, - 47.325442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.737473, - 47.325442 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.695545, - 47.331241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.695545, - 47.331241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.513712, - 47.055246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.513712, - 47.055246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.666373, - 47.527509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.666373, - 47.527509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.483028, - 47.344527 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.507161, - 47.348051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.530352, - 47.342459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682692, - 46.901893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.530352, - 47.342459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.527051, - 47.342284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.527051, - 47.342284 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.277813, - 47.461336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.277813, - 47.461336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.792024, - 47.3281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.792024, - 47.3281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.440785, - 47.267334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.440785, - 47.267334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.431817, - 47.441948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.431817, - 47.441948 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.682692, - 46.901893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.507161, - 47.348051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5939858, - 47.28067 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.621305, - 47.329273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.621305, - 47.329273 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.626831, - 47.331215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.626831, - 47.331215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.200174, - 47.299795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.200174, - 47.299795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187091, - 47.317501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.187091, - 47.317501 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.371945, - 47.251305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.210351, - 47.287351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.385744, - 47.253189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.335882, - 47.261013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.097518, - 47.114189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.201325, - 47.384129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.340087, - 47.259812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.345177, - 47.270324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.345177, - 47.270324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.317604, - 47.245187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.317604, - 47.245187 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.335882, - 47.261013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.335882, - 47.261013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.335882, - 47.261013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.122795, - 47.127457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.741972, - 47.131272 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.750358, - 47.132868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.750358, - 47.132868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.432168, - 47.282658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.432168, - 47.282658 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.433513, - 47.275217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.433513, - 47.275217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.218858, - 47.129005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.218858, - 47.129005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.097518, - 47.114189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.014487, - 47.362983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.887244, - 47.540558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.754958, - 47.198616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.754958, - 47.198616 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45349, - 47.398087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45349, - 47.398087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.547222, - 47.378032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.547222, - 47.378032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.191869, - 47.136163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.191869, - 47.136163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.436018, - 47.01779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.436018, - 47.01779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.887244, - 47.540558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.084647, - 47.433331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09346, - 47.436521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.09346, - 47.436521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.540393, - 47.112585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.580587, - 47.127249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.580587, - 47.127249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.582848, - 47.123621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.582848, - 47.123621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.014487, - 47.362983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.10196, - 47.115941 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.182186, - 47.183363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.196869, - 47.369918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.180168, - 47.232194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.180168, - 47.232194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58056, - 47.011961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5765, - 46.967023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5765, - 46.967023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.74289, - 46.92994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.74289, - 46.92994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.781826, - 47.277731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.781826, - 47.277731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.779158, - 47.274213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.779158, - 47.274213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.196869, - 47.369918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.175058, - 47.228305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.038474, - 47.517877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.038474, - 47.517877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.103525, - 47.384481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.103525, - 47.384481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095683, - 47.406206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.095683, - 47.406206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.867052, - 47.104023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.867052, - 47.104023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.308939, - 47.061157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.182186, - 47.183363 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.201325, - 47.384129 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.175058, - 47.228305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.308939, - 47.061157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.161966, - 47.247989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.632266, - 47.123441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.161966, - 47.247989 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.376317, - 47.057271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.376317, - 47.057271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.293884, - 47.517368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.293884, - 47.517368 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.858725, - 47.186286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.449028, - 47.783883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.449028, - 47.783883 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57997, - 47.500873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.57997, - 47.500873 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.58056, - 47.011961 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.632266, - 47.123441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.486141, - 47.720665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.30994, - 47.313832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.163872, - 47.264783 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.486141, - 47.720665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.006097, - 47.459991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.006097, - 47.459991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.300755, - 47.319113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.300755, - 47.319113 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.30994, - 47.313832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "840290183", - "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", - "phone": "0 970 830 213", - "network": "SYDELA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8531, - 48.8413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Daltoner Vire", - "owner:ref:FR:SIREN": "452522204", - "email": "denis.lot@daltoner.fr", - "phone": "0608471175", - "network": "Daltoner", - "ref": "78219588-3e13-4afd-9f82-4941dc515e80", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr09:00-12:30,mo-fr14:00-18:00", - "start_date": "2022-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4245618642693594, - 46.123436402688206 - ] - }, - "properties": { - "amenity": "charging_station", - "owner:ref:FR:SIREN": "480339068", - "email": "benoit.denjean0121@orange.fr", - "network": "Réseau de charge 17 BOULEVARD CARNOT 03200 VICHY", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.72, - 48.6122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ICS Scgilthigheim", - "owner:ref:FR:SIREN": "310336367", - "email": "info@ics-sa.com", - "phone": "0390202636", - "network": "ICS Schiltigheim", - "ref": "1b10ea6e-c5c9-46ca-81c0-4b6e16aa4098", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-17:00", - "start_date": "2021-12-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0769923, - 47.3512055 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FReshmile", - "owner:ref:FR:SIREN": "015450596", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "KEOLIS", - "ref": "FR*FR1*EUVMW", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", - "start_date": "2021-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3900578, - 49.0368902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "716980297", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "E.LECLERC", - "ref": "FRLE2EDGSS1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.0936, - 49.1281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Ambroise Avocat", - "owner:ref:FR:SIREN": "810880088", - "email": "karine.ambroise@ambroise-avocat.fr", - "phone": "0688405729", - "network": "Ambroise avocat", - "ref": "c47a96e0-8457-4f87-b3a5-69b8647c1ed1", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "mo-fr09:00-12:30,mo-fr14:00-18:00", - "start_date": "2022-01-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.3003961423287695, - 45.76011619906451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Non concerné", - "owner:ref:FR:SIREN": "812067841", - "email": "lodgesdureynou@gmail.com", - "phone": "Non concerné", - "network": "Non concerné", - "ref": "LESLODGESDUREYNOU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6822308312133751, - 44.83887410485574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FLYOPS", - "owner:ref:FR:SIREN": "511679896", - "email": "contact@flyops.net", - "network": "FLYOPS", - "ref": "EVB-P21211914", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-17:00", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6822308312133751, - 44.83887410485574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FLYOPS", - "owner:ref:FR:SIREN": "511679896", - "email": "contact@flyops.net", - "network": "FLYOPS", - "ref": "EVB-P21211914", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-17:00", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6822308312133751, - 44.83887410485574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FLYOPS", - "owner:ref:FR:SIREN": "511679896", - "email": "contact@flyops.net", - "network": "FLYOPS", - "ref": "EVB-P21211914", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-17:00", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6822308312133751, - 44.83887410485574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "FLYOPS", - "owner:ref:FR:SIREN": "511679896", - "email": "contact@flyops.net", - "network": "FLYOPS", - "ref": "EVB-P21211914", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-17:00", - "start_date": "2022-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.102562200000012, - 50.778986100000004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MANUBOB", - "owner:ref:FR:SIREN": "401833322", - "email": "contact@manubob-industrie.fr", - "network": "MANUBOB", - "ref": "EVB-P21211626", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-17:00", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.102562200000012, - 50.778986100000004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MANUBOB", - "owner:ref:FR:SIREN": "401833322", - "email": "contact@manubob-industrie.fr", - "network": "MANUBOB", - "ref": "EVB-P21211626", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 8:30-17:00", - "start_date": "2022-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0352479, - 49.0555095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "330816877", - "email": "contact@secal-electricite.fr", - "phone": "0134201124", - "network": "AGP", - "ref": "EVBP1942030", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "MO-FR 08:00-12:00,MO-FR 14:00-18:00", - "start_date": "2022-10-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24, - 48.94 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "themis", - "owner:ref:FR:SIREN": "339625477", - "email": "ssznek@themis-experts.com", - "phone": "0662093978", - "network": "edf", - "ref": "c8ee7876-9261-497e-9f6b-856d3bf94e3f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00, Th 08:00-18:00", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501248, - 43.300038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LEGA", - "owner:ref:FR:SIREN": "881418917", - "email": "contact@greenhomeimmobilier.fr", - "network": "Securecharge", - "ref": "Securecharge-GrHoMar-CC-1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-19:00", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501248, - 43.300038 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LEGA", - "owner:ref:FR:SIREN": "881418917", - "email": "contact@greenhomeimmobilier.fr", - "network": "Securecharge", - "ref": "Securecharge-GrHoMar-CC-1", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "no", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-19:00", - "start_date": "2022-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1, - 43.72 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "651b5aa1-1762-4c01-82e4-6572c740945c", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.13, - 43.68 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "LUMI'IN", - "owner:ref:FR:SIREN": "807940069", - "email": "secretariat@lumi-in.fr", - "phone": "0754374751", - "network": "LUMI'IN", - "ref": "f77e415b-bcf9-4b98-923e-c2d6202963f4", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23, - 48.69 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "OCR MAINTENANCE ELECTRONIQUE", - "owner:ref:FR:SIREN": "402923643", - "email": "g.arpino@ocr.fr", - "phone": "0680074537", - "network": "OCR MAINTENANCE ELECTRONIQUE", - "ref": "c8ee7876-9261-497e-9f6b-856d3bf94e3f", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", - "start_date": "2022-01-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212311, - 48.931373 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "HOTEL KYRIAD PARIS BEZONS", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:01", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207246, - 50.68494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798854, - 48.841032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Acelec", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.798854, - 48.841032 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Acelec", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:00", - "start_date": "2022-04-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207433, - 50.684876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207433, - 50.684876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212336, - 48.931356 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "HOTEL KYRIAD PARIS BEZONS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-19:01", - "start_date": "2022-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20737, - 50.684898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207306, - 50.684918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207306, - 50.684918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20737, - 50.684898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207246, - 50.68494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207187, - 50.684964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207187, - 50.684964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207124, - 50.684984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207124, - 50.684984 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207047, - 50.685013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.207047, - 50.685013 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.206962, - 50.685049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.206962, - 50.685049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Acelec Charge", - "owner:ref:FR:SIREN": "301192464", - "email": "acelec@acelec-france.com", - "phone": "01 81 73 03 50", - "network": "Camaïeu France", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "no", - "opening_hours": "Mo-Su 08:00-08:00", - "start_date": "2022-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2199154, - 44.1203594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MAS DES OLIVES", - "owner:ref:FR:SIREN": "834246738", - "email": "info@masdesolives.com", - "phone": "0490673411", - "network": "MAS DES OLIVES", - "ref": "3b6d5b9c-4bc8-4daa-aeb8-ba09fdddb6d1", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1928184, - 48.7571171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "513254920", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "E.LECLERC", - "ref": "FRLE2EDWKL1", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2566243, - 48.9565006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile", - "owner:ref:FR:SIREN": "338980675", - "email": "exploitation@freshmile.com", - "phone": "0388257058", - "network": "HYUNDAI", - "ref": "FRFR1EVSFB1", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7352, - 45.8414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "451766877", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC BOIS DIEU", - "ref": "FRECN0134", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7352, - 45.8414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "451766877", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC BOIS DIEU", - "ref": "FRECN0133", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.715638, - 45.976484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "451766877", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC DEPAGNEUX", - "ref": "FRECN0136", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.715638, - 45.976484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "451766877", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC DEPAGNEUX", - "ref": "FRECN0135", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.074257, - 45.720859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Aeroports de lyon", - "owner:ref:FR:SIREN": "493425136", - "email": "christophe.langlet@lyonaeroports.com", - "network": "ADL", - "ref": "01FHZ1QMY4JSFE6G7VES2794BC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "yes", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2017-02-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7421819, - 45.979448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "877596866", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC LAGUNE SUD", - "ref": "FRECN0128", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7421819, - 45.979448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "MEA ENERGIES", - "owner:ref:FR:SIREN": "877596866", - "email": "contact@meaenergies.com", - "phone": "0428704850", - "network": "PARC LAGUNE SUD", - "ref": "FRECN0127", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "payment:credit_cards": "no", - "reservation": "no", - "opening_hours": "Mo-Sa 06:00-20:00", - "start_date": "2022-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.595174, - 44.388486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "863355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877256, - 45.734166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.119464, - 44.612295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767193", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.119464, - 44.612295 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767193", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114309, - 49.053385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114309, - 49.053385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114309, - 49.053385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114309, - 49.053385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.114309, - 49.053385 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694028", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.442532, - 44.46386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805269", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877256, - 45.734166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877256, - 45.734166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.269004, - 43.235422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781569", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877256, - 45.734166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877256, - 45.734166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.877256, - 45.734166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.741735, - 43.866454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.741735, - 43.866454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.741735, - 43.866454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.741735, - 43.866454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805275", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260587, - 50.739646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260587, - 50.739646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754344", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.982722, - 43.908974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805230", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.269004, - 43.235422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781569", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.421482, - 48.664224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694034", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.828952, - 43.641184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789201", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.199395, - 46.208436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805320", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.199395, - 46.208436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805320", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70452, - 45.821636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789204", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70452, - 45.821636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789204", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7358, - 43.424749 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781632", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361202, - 50.992742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735843", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361202, - 50.992742 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735843", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.662712, - 44.952304 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815388", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.269004, - 43.235422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781569", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.521648, - 48.40612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706151", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.269004, - 43.235422 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781569", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.421482, - 48.664224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694034", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.982861, - 43.909011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805278", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.199395, - 46.208436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805305", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065185, - 44.318093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805308", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.065185, - 44.318093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805308", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.363737, - 43.280118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805311", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.252902, - 43.349417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805302", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.108344, - 47.997848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789174", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.738868, - 43.435307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805338", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.741422, - 43.866041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805341", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.741422, - 43.866041 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805341", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.125582, - 47.277542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.125582, - 47.277542 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735840", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117981, - 49.483871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880128", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118355, - 49.483861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11762, - 49.4841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880134", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.252902, - 43.349417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805302", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.252902, - 43.349417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805302", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.485094, - 48.401232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735822", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.485094, - 48.401232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735822", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.115492, - 45.800386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735828", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.252902, - 43.349417 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805302", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.34728, - 47.690076 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735831", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76877, - 43.650773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694037", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.76877, - 43.650773 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "694037", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.490479, - 43.388125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735834", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.490479, - 43.388125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735834", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.614433, - 44.20859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789198", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745591, - 50.743319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.745591, - 50.743319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880242", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.44395, - 44.464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA3", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805299", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.828952, - 43.641184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789201", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.085901, - 43.219426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781608", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117683, - 49.484081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880140", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69131, - 43.488535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "801516", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.764552, - 43.955191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "842559", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.263228, - 49.851053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814563", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.64867, - 47.64051 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "804474", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.589693, - 47.258202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814566", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.589693, - 47.258202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814566", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.589693, - 47.258202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814566", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.589693, - 47.258202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814566", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.764552, - 43.955191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "842559", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99651, - 45.209725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.430718, - 44.968101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814572", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.332955, - 47.407277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788757", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.716365, - 49.20135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "744225", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528778, - 48.535592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767304", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.949199, - 47.704058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767316", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.949199, - 47.704058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767316", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.949199, - 47.704058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767316", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.949199, - 47.704058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767316", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294479, - 48.862923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "782313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294479, - 48.862923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "782313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294479, - 48.862923 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "782313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.332955, - 47.407277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788757", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99651, - 45.209725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.332955, - 47.407277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788757", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.866728, - 47.513851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788760", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.866728, - 47.513851 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788760", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.001987, - 45.575544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788763", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.001987, - 45.575544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788763", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99651, - 45.209725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99651, - 45.209725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99651, - 45.209725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.99651, - 45.209725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "788925", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.575791, - 48.605656 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814569", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.430718, - 44.968101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "814572", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.349162, - 51.032636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265873, - 50.728719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.488524, - 43.304792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787233", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.488524, - 43.304792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.488524, - 43.304792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.488524, - 43.304792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.704835, - 45.821472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "501567", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.704835, - 45.821472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "501567", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.899922, - 43.602172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789186", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.899922, - 43.602172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789186", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265873, - 50.728719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265873, - 50.728719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.852161, - 50.93186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789165", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265873, - 50.728719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265873, - 50.728719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706625", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265873, - 50.728719 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706625", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.693295, - 45.147098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706628", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.693295, - 45.147098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706628", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.828941, - 43.641247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789189", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.722984, - 48.650454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781599", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.349162, - 51.032636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.349162, - 51.032636 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735825", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.262325, - 50.738815 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "735816", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.852161, - 50.93186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA1", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789165", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.033519, - 45.425544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882348", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.699498, - 45.189336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789183", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.276431, - 48.215832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882351", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.276431, - 48.215832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882351", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.498655, - 48.761611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882354", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.498655, - 48.761611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882354", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.498655, - 48.761611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882354", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.498655, - 48.761611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882354", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70061, - 48.239107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882357", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.70061, - 48.239107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "882357", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.305931, - 48.801119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W10", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "800076", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.699498, - 45.189336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789183", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842909, - 43.925778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767202", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.699498, - 45.189336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789183", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.699498, - 45.189336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789183", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805224", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402481, - 43.7514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756624", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.402481, - 43.7514 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756624", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842909, - 43.925778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*W11", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767202", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118598, - 49.483854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880137", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117533, - 49.484118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880143", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.715921, - 49.114411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815418", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.630492, - 43.314747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815406", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291873, - 49.043902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291873, - 49.043902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588763, - 43.188354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815403", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588763, - 43.188354 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815403", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545529, - 48.472713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747285", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545529, - 48.472713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545529, - 48.472713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.545529, - 48.472713 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.630492, - 43.314747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815406", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.630492, - 43.314747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815406", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291873, - 49.043902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.630492, - 43.314747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815406", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.235914, - 43.414287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.235914, - 43.414287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815409", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.235914, - 43.414287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.235914, - 43.414287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.667107, - 48.9551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.667107, - 48.9551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.667107, - 48.9551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787224", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843743, - 47.040481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "761370", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.291873, - 49.043902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747282", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3571, - 47.3395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805239", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843743, - 47.040481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "761370", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612904, - 44.854444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781578", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81362, - 49.4212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805233", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81362, - 49.4212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.715785, - 49.1145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815400", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971963, - 43.615253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971963, - 43.615253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971963, - 43.615253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.971963, - 43.615253 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612904, - 44.854444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781578", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.612904, - 44.854444 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781578", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.921623, - 45.902621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3571, - 47.3395 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805239", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.921623, - 45.902621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.921623, - 45.902621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767184", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.921623, - 45.902621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367107, - 48.828405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756795", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.367107, - 48.828405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756795", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67837, - 44.8184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67837, - 44.8184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67837, - 44.8184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805236", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.67837, - 44.8184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843743, - 47.040481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "761370", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.843743, - 47.040481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "761370", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81362, - 49.4212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.698316, - 43.449905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.412932, - 50.487002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805251", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.412932, - 50.487002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805251", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845881, - 44.947093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741657", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845881, - 44.947093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741657", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845881, - 44.947093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741657", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.845881, - 44.947093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741657", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.698316, - 43.449905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828288", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.698316, - 43.449905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.698316, - 43.449905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.292898, - 49.835137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805254", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.694416, - 44.995186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828285", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.292898, - 49.835137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805254", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504963, - 45.475736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815415", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504963, - 45.475736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815415", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539385, - 48.848921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828291", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537643, - 50.345614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789168", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537643, - 50.345614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789168", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537643, - 50.345614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789168", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.537643, - 50.345614 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789168", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.715921, - 49.114411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815418", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.292555, - 49.834635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805248", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.694416, - 44.995186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.361856, - 46.16789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045402, - 43.430777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754329", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.361856, - 46.16789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828282", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.361856, - 46.16789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718671, - 44.910302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718671, - 44.910302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.718671, - 44.910302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969107, - 43.558484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815412", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969107, - 43.558484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815412", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969107, - 43.558484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815412", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.969107, - 43.558484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815412", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.045402, - 43.430777 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.694416, - 44.995186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.032891, - 50.981771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.032891, - 50.981771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.032891, - 50.981771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.032891, - 50.981771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787227", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912361, - 49.169977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912361, - 49.169977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805245", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912361, - 49.169977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.912361, - 49.169977 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.694416, - 44.995186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.81362, - 49.4212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466205, - 48.233331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118441, - 49.483857 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880146", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390745, - 50.629965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "696500", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.147694, - 48.378312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.147694, - 48.378312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.147694, - 48.378312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789195", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.390745, - 50.629965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "696500", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.082393, - 43.595316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781572", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.082401, - 43.595318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781575", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.583028, - 43.313028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815391", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.583028, - 43.313028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815391", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.583028, - 43.313028 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815391", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.688774, - 43.386234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815394", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.688774, - 43.386234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815394", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.028564, - 43.104228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880200", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.028564, - 43.104228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880200", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.028564, - 43.104228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880200", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118285, - 49.483861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880176", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117772, - 49.48406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880149", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11768, - 49.484084 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880152", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.11752, - 49.484122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880155", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118141, - 49.483858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880158", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117614, - 49.4841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880161", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118521, - 49.483859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880164", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117765, - 49.484062 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880167", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118435, - 49.483859 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880170", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118609, - 49.483855 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880173", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118055, - 49.483866 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880179", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118145, - 49.483861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880182", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118364, - 49.483861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880185", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118067, - 49.483865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880188", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118534, - 49.483858 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880191", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.118292, - 49.483863 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880194", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.117977, - 49.483868 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880197", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.777916, - 44.826052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789192", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.777916, - 44.826052 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789192", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.058135, - 48.783543 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699635", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.028564, - 43.104228 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880200", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.112658, - 48.301832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880203", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466205, - 48.233331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.509592, - 46.209011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805296", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.509592, - 46.209011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805296", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.833115, - 45.71833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805317", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.833115, - 45.71833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805317", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.833115, - 45.71833 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805317", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41169, - 48.6808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741645", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41169, - 48.6808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741645", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.661547, - 45.054029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805284", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.164156, - 49.280802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741651", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.164156, - 49.280802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741651", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.164156, - 49.280802 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741651", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.398027, - 47.497011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741654", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.398027, - 47.497011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741654", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.398027, - 47.497011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741654", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.398027, - 47.497011 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741654", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466205, - 48.233331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.466205, - 48.233331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828279", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.303727, - 46.799849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880239", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.661547, - 45.054029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805284", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.837505, - 46.646292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815397", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.46174, - 45.653935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805257", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.837505, - 46.646292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815397", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.837505, - 46.646292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815397", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.112718, - 48.301248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880206", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.112718, - 48.301248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880206", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.112718, - 48.301248 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880206", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.524187, - 43.508911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851874", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.524187, - 43.508911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851874", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.46174, - 45.653935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805257", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.46174, - 45.653935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805257", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.46174, - 45.653935 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805257", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.661547, - 45.054029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805284", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.371428, - 43.848528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805260", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.371428, - 43.848528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805260", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.371428, - 43.848528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805260", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.371428, - 43.848528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805260", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.330752, - 46.151508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805263", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.330752, - 46.151508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805263", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.661495, - 45.054285 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805272", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.716421, - 45.166618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805281", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.716421, - 45.166618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA5", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805281", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011686, - 48.557306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011686, - 48.557306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011686, - 48.557306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.579821, - 43.630042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "877215", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057903, - 46.067479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709409", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057903, - 46.067479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709409", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868515, - 46.772643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674567", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868515, - 46.772643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674567", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.868515, - 46.772643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674567", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05556, - 43.423029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613465", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05556, - 43.423029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613465", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.05556, - 43.423029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613465", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.579821, - 43.630042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "877215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.579821, - 43.630042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "877215", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057903, - 46.067479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709409", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.668929, - 45.238983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746976", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.668929, - 45.238983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746976", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.668929, - 45.238983 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746976", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.107782, - 45.62177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "590822", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.107782, - 45.62177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "590822", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.107782, - 45.62177 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "590822", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.127367, - 45.756949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746979", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-20:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.127367, - 45.756949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746979", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-20:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.127367, - 45.756949 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746979", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-20:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057903, - 46.067479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057903, - 46.067479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709409", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348872, - 43.816962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "679184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879898, - 43.12474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "851190", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.779702, - 45.807739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746973", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.779702, - 45.807739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746973", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.779702, - 45.807739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746973", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073562, - 45.938909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709406", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073562, - 45.938909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709406", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.073562, - 45.938909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709406", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879898, - 43.12474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "851190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879898, - 43.12474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "851190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879898, - 43.12474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "851190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.879898, - 43.12474 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "851190", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.057903, - 46.067479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "709409", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.846733, - 43.570576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697538", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.846733, - 43.570576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697538", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.846733, - 43.570576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697538", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255585, - 43.347511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697541", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-18:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255585, - 43.347511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697541", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-18:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.255585, - 43.347511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697541", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-18:59" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92037, - 44.943271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "626654", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92037, - 44.943271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "626654", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.92037, - 44.943271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "626654", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348872, - 43.816962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "679184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348872, - 43.816962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "679184", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856536, - 45.716581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "753657", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926582, - 45.719814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790125", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926582, - 45.719814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790125", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926582, - 45.719814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790125", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.926582, - 45.719814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790125", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43459, - 43.320479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746982", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43459, - 43.320479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746982", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.43459, - 43.320479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746982", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343414, - 45.469726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790128", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343414, - 45.469726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790128", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348872, - 43.816962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "679184", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789674, - 46.251364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674570", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348872, - 43.816962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "679184", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348872, - 43.816962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "679184", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.947235, - 45.572891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "740952", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.947235, - 45.572891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "740952", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.947235, - 45.572891 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "740952", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37817, - 47.110352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "779304", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37817, - 47.110352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "779304", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37817, - 47.110352 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "779304", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789674, - 46.251364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674570", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.789674, - 46.251364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674570", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842734, - 44.120237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674573", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842734, - 44.120237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674573", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.842734, - 44.120237 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "674573", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.692073, - 43.460521 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "701234", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856536, - 45.716581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "753657", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.856536, - 45.716581 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "753657", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.011686, - 48.557306 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767313", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.47374, - 43.758054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674639", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44416, - 43.88006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "626567", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44416, - 43.88006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "626567", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.438363, - 43.751828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683228", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.438363, - 43.751828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683228", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.472565, - 43.833315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683231", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.472565, - 43.833315 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683231", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42744, - 43.745292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674339", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42744, - 43.745292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674339", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.47374, - 43.758054 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674639", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.414438, - 43.941508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "590672", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.499757, - 43.773746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683225", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.414438, - 43.941508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "590672", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.414438, - 43.941508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "590672", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.414438, - 43.941508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "590672", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.442932, - 43.78694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593321", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.442932, - 43.78694 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593321", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.551562, - 43.989458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593324", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.551562, - 43.989458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593324", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.399986, - 43.744711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683234", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.399986, - 43.744711 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683234", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.499757, - 43.773746 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683225", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.51395, - 43.936804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593318", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.59311, - 44.089897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674633", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616902, - 44.674677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "789690", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.147713, - 43.328661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "771717", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.147713, - 43.328661 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "771717", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0959, - 43.000297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "789687", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0959, - 43.000297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "789687", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0959, - 43.000297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "789687", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.949694, - 43.634486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "544793", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Su 07:00-21:00,Th,Fr,Sa 07:00-23:45" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.949694, - 43.634486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "544793", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Su 07:00-21:00,Th,Fr,Sa 07:00-23:45", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616902, - 44.674677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "789690", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.616902, - 44.674677 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "789690", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.683944, - 44.405045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "837012", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.51395, - 43.936804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593318", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.683944, - 44.405045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "837012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.683944, - 44.405045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "837012", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09328, - 50.58254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "810081", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09328, - 50.58254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "810081", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09328, - 50.58254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "EVzen", - "ref": "810081", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.507033, - 43.775118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.507033, - 43.775118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.507033, - 43.775118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.507033, - 43.775118 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377772", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.59311, - 44.089897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674633", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48751, - 43.77632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377766", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.036317, - 43.829995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697535", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-19:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.516805, - 43.943967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "612874", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462256, - 43.799141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593345", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.462256, - 43.799141 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593345", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.613763, - 44.063215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674615", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.613763, - 44.063215 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674615", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.400442, - 43.739492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377811", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.400442, - 43.739492 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377811", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.616321, - 44.063348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674606", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.616321, - 44.063348 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674606", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.516805, - 43.943967 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "612874", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.436248, - 43.751169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "850842", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41676, - 43.73867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377745", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.436248, - 43.751169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "850842", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.321626, - 43.303566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811083", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.321626, - 43.303566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811083", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.321626, - 43.303566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811083", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.657747, - 45.191302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811086", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.657747, - 45.191302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811086", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.657747, - 45.191302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811086", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.036317, - 43.829995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697535", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-19:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.036317, - 43.829995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "697535", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-19:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.41676, - 43.73867 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377745", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.477096, - 43.795037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593339", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.48751, - 43.77632 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377766", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.554498, - 44.002431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683240", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5946, - 44.082484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "597192", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5946, - 44.082484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "597192", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.497872, - 43.806605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593330", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.497872, - 43.806605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593330", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.449385, - 43.876103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674621", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.449385, - 43.876103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674621", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45799, - 43.765323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683237", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.45799, - 43.765323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683237", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.554498, - 44.002431 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "683240", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49197, - 43.79061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674618", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.477096, - 43.795037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593339", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.49197, - 43.79061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "674618", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.513379, - 43.781903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377778", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.513379, - 43.781903 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377778", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.479481, - 43.76015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377796", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.479481, - 43.76015 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "377796", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "yes", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.469054, - 43.78898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593336", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.469054, - 43.78898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "593336", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.494254, - 43.781006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "612871", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.494254, - 43.781006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "CARF - Bornes Publiques", - "ref": "612871", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343414, - 45.469726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790128", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343414, - 45.469726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790128", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.343414, - 45.469726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "790128", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28694, - 48.5546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809715", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28694, - 48.5546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809715", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28694, - 48.5546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809715", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28694, - 48.5546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809715", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.28694, - 48.5546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809715", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38243, - 48.94513 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809718", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27767, - 50.7313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809721", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27767, - 50.7313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809721", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27767, - 50.7313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809721", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27767, - 50.7313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809721", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27767, - 50.7313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "809721", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097651, - 49.457892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "811455", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409014, - 43.307994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "678953", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.380148, - 43.304954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836985", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.195572, - 43.409384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613330", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.195572, - 43.409384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613330", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540796, - 43.214406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836988", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540796, - 43.214406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836988", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.540796, - 43.214406 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836988", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.376228, - 43.253932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836994", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.376228, - 43.253932 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836994", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409014, - 43.307994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "678953", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.45921, - 43.345324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613333", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.45921, - 43.345324 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613333", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08947, - 48.80341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782652", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08947, - 48.80341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782652", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08947, - 48.80341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782652", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08947, - 48.80341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782652", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.08947, - 48.80341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782652", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.16648, - 48.05205 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "782655", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097651, - 49.457892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "811455", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097651, - 49.457892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "811455", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.725449, - 45.157305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "740955", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.653702, - 47.234349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "707684", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375174, - 48.905095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "588491", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375174, - 48.905095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "588491", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375174, - 48.905095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "588491", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375174, - 48.905095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "588491", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013502, - 49.391457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "674789", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.013502, - 49.391457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "674789", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.954775, - 47.160968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "674792", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.954775, - 47.160968 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "674792", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.653702, - 47.234349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "707684", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304465, - 50.909617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "701342", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.303378, - 43.149175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "585578", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304465, - 50.909617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "701342", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376104, - 47.765942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "756453", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376104, - 47.765942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "756453", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.134437, - 48.477517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767307", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.134437, - 48.477517 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767307", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.013792, - 48.555402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767310", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.013792, - 48.555402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767310", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.013792, - 48.555402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767310", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.013792, - 48.555402 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "767310", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.375174, - 48.905095 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Borneco | FR*BHM", - "email": "technique.borneco@gmail.com", - "network": "BornEco", - "ref": "588491", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097651, - 49.457892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "811455", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.599606, - 45.60921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881103", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.097651, - 49.457892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "811455", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58904, - 50.49259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58904, - 50.49259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58904, - 50.49259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58904, - 50.49259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58904, - 50.49259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.58904, - 50.49259 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881100", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.599606, - 45.60921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881103", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.599606, - 45.60921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881103", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.599606, - 45.60921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "881103", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84073, - 47.48726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "766611", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.84073, - 47.48726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "766611", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.13031, - 45.66341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Atlante | FR*ATL", - "email": "operations.france@atlante.energy", - "network": "Atlante", - "ref": "799176", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.380148, - 43.304954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409094, - 43.264841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613327", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.409094, - 43.264841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613327", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69824, - 43.448584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "753660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-19:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69824, - 43.448584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "753660", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-19:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.69824, - 43.448584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "753660", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-19:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.782529, - 44.930736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "735702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381775, - 43.338291 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "SOMIMAR - Bornes publiques", - "ref": "590825", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.389461, - 43.280847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613273", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.389461, - 43.280847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613273", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.480306, - 43.335877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613276", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.480306, - 43.335877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613276", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22183, - 43.41657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.782529, - 44.930736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "735702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.782529, - 44.930736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "735702", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.362979, - 43.288972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "678950", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883278, - 45.026175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811089", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.725449, - 45.157305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "740955", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.725449, - 45.157305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "740955", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.309178, - 45.780319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746985", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.309178, - 45.780319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746985", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.309178, - 45.780319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746985", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.309178, - 45.780319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746985", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.309178, - 45.780319 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746985", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883278, - 45.026175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811089", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.883278, - 45.026175 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "811089", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666341, - 44.831528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613468", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.383969, - 44.038574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746988", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666341, - 44.831528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613468", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666341, - 44.831528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613468", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666341, - 44.831528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613468", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.666341, - 44.831528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "613468", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.383969, - 44.038574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746988", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.383969, - 44.038574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746988", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.383969, - 44.038574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746988", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.383969, - 44.038574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746988", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.383969, - 44.038574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "Norauto - Bornes publiques", - "ref": "746988", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.22183, - 43.41657 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613279", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387781, - 43.299928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387781, - 43.299928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613282", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37587, - 43.284198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62989, - 43.211412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613306", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25172, - 43.411612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613309", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.25172, - 43.411612 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613309", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.389277, - 43.290449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613312", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.389277, - 43.290449 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613312", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387068, - 43.260804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836976", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387068, - 43.260804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836976", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387068, - 43.260804 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836976", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37587, - 43.284198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.393886, - 43.255794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613318", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.367613, - 43.315171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.393886, - 43.255794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613318", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.398803, - 43.299757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613321", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.398803, - 43.299757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613321", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.468984, - 43.354728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613324", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.468984, - 43.354728 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613324", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363203, - 43.270909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836982", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363203, - 43.270909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836982", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.363203, - 43.270909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836982", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.362979, - 43.288972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "678950", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62989, - 43.211412 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613306", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.364434, - 43.298149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836973", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.364434, - 43.298149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836973", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390399, - 43.339001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613303", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.367613, - 43.315171 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613285", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31756, - 43.359392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "816522", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.31756, - 43.359392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "816522", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43888, - 43.309691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.43888, - 43.309691 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.433546, - 43.294651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613291", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.433546, - 43.294651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613291", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.628622, - 43.297149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.628622, - 43.297149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501411, - 43.295673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501411, - 43.295673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836970", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.501411, - 43.295673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "836970", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387834, - 43.288587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "678947", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.387834, - 43.288587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "678947", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.397543, - 43.260987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613297", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.397543, - 43.260987 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613297", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4014, - 43.319046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613300", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4014, - 43.319046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613300", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.390399, - 43.339001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "evZen | FR*EVZ", - "email": "support@evzen.com", - "network": "ENGIE MAMP - Bornes publiques", - "ref": "613303", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.715921, - 49.114411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815418", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.883274, - 46.671909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741660", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.595174, - 44.388486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "863355", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70859, - 45.193048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747312", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.099712, - 43.635144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "544751", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.099712, - 43.635144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "544751", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.958167, - 43.125814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706298", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.958167, - 43.125814 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706298", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.724538, - 48.10671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706295", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.46288, - 47.186053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805335", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.965738, - 50.268206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706301", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.965738, - 50.268206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706301", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.203076, - 47.992822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706304", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.203076, - 47.992822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706304", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.867375, - 45.740255 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781623", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.443023, - 48.919093 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577511", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.888169, - 47.96278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "671597", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.888169, - 47.96278 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "671597", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213791, - 48.864353 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "690497", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.724538, - 48.10671 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706295", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511331", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511331", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511331", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27863, - 48.802732 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880251", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370444, - 48.689668 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "690500", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.08972, - 43.597586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "413753", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.745177, - 44.558061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706307", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.745177, - 44.558061 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706307", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706310", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18768, - 45.017224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789177", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.18768, - 45.017224 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789177", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.502768, - 50.357976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747315", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.502768, - 50.357976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747315", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106539, - 48.680822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "510419", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.815115, - 50.428374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106539, - 48.680822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "510419", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.316633, - 48.763962 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "756459", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.815115, - 50.428374 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756801", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.084763, - 47.992697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781629", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511331", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.084763, - 47.992697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781629", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.473353, - 43.283688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805344", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.160763, - 49.341954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538382", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.160763, - 49.341954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538382", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936743, - 47.400381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880248", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936743, - 47.400381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880248", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.609828, - 49.022562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "882363", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.998446, - 50.611664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "588713", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.737657, - 44.533779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880245", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.655923, - 47.424479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "613612", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.655923, - 47.424479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "613612", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.383996, - 43.844813 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577502", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.642176, - 50.522053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538379", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.642176, - 50.522053 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538379", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.369939, - 47.757525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706277", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.369939, - 47.757525 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706277", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.998446, - 50.611664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "588713", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.002737, - 43.186433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "590840", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.892216, - 50.421265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781620", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.002737, - 43.186433 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "590840", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057488, - 47.338265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "801984", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.566679, - 50.418546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805314", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.566679, - 50.418546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805314", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.041879, - 43.400714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706280", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.041879, - 43.400714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706280", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.820606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756807", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.820606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756807", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.820606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756807", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706274", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.892216, - 50.421265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781620", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.820606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756807", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.285347, - 48.90836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "690494", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80693, - 45.216413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "520115", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80693, - 45.216413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "520115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80693, - 45.216413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "520115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80693, - 45.216413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "520115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577493", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577493", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.53466, - 47.49048 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "413750", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577496", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577496", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.435014, - 46.6709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706265", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.156842, - 50.717828 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747303", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.435014, - 46.6709 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706265", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.982864, - 43.909005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "528131", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.544192, - 44.849567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851889", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.544192, - 44.849567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851889", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.001006, - 43.65229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "544748", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.001006, - 43.65229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "544748", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.373755, - 43.335637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706268", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.373755, - 43.335637 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706268", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706271", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.820606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756807", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.820606 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756807", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852179, - 43.115819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828303", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.901545, - 42.690812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805329", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.901545, - 42.690812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805329", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.56281, - 50.4117 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805332", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.704475, - 47.341021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805326", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277622, - 48.832969 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747309", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.852179, - 43.115819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828303", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.704475, - 47.341021 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805326", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "516266", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34242, - 48.941721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577508", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "516266", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "516266", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.148137, - 48.782566 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "516266", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299509, - 48.98314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "703292", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299509, - 48.98314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "703292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.043626, - 43.151848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767208", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.043626, - 43.151848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "767208", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.468012, - 48.414563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706283", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.468012, - 48.414563 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706283", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34242, - 48.941721 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577508", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.112697, - 49.041779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899717, - 42.725495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815427", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899717, - 42.725495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815427", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.899717, - 42.725495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815427", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.227624, - 50.176641 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "743940", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.890093, - 43.591561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706286", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.890093, - 43.591561 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706286", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.744211, - 47.656289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706289", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.744211, - 47.656289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706289", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.112697, - 49.041779 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706292", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.609828, - 49.022562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "882363", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.609828, - 49.022562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "882363", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.883274, - 46.671909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741660", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431899, - 48.903847 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840458", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.846141, - 47.898355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815799", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.109533, - 49.413475 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840456", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.143343, - 45.797254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840466", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223229, - 48.895731 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "708929", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75022, - 45.250192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "815082", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.75022, - 45.250192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "815082", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.595174, - 44.388486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "863355", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.595174, - 44.388486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Autel Netherlands B.V. | FR*AUT", - "email": "evsupport.eu@autel.com", - "network": "AUTEL EUROPE GmbH", - "ref": "863355", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.540527, - 48.798316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840460", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.421246, - 43.640791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840464", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.548227, - 44.892388 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840462", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.609828, - 49.022562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "882363", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.857081, - 46.823734 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "444132", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115141, - 45.88781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "511193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.817536, - 43.801133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "402194", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115141, - 45.88781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "511193", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115141, - 45.88781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "511193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115141, - 45.88781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "511193", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115141, - 45.88781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "511193", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.115141, - 45.88781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "511193", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.135457, - 43.395675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "759999", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.135457, - 43.395675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "759999", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.135457, - 43.395675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "759999", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.817536, - 43.801133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "402194", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.817536, - 43.801133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "402194", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698781, - 43.448498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "292766", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698781, - 43.448498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "292766", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.698781, - 43.448498 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "292766", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.802572, - 43.627679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704399", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.802572, - 43.627679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704399", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.802572, - 43.627679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704399", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.817536, - 43.801133 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "402194", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016488, - 43.823233 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "370046", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.977228, - 50.453083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704402", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.977228, - 50.453083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.977228, - 50.453083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.977228, - 50.453083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.977228, - 50.453083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704402", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.977228, - 50.453083 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "704402", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.772177, - 45.809544 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840452", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.011858, - 49.261551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840454", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.979827, - 50.402145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840450", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.982252, - 43.15277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.259945, - 46.228058 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767091", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.982252, - 43.15277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767730", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.982252, - 43.15277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.982252, - 43.15277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.982252, - 43.15277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767730", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.982252, - 43.15277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "767730", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.052693, - 43.627499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "817149", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.516744, - 43.462911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.052693, - 43.627499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "817149", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.052693, - 43.627499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Proviridis | FR*PVD", - "email": "data.gouv@proviridis.fr", - "network": "Proviridis", - "ref": "817149", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.251435, - 48.886998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "817419", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.251435, - 48.886998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "817419", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.516744, - 43.462911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.516744, - 43.462911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.516744, - 43.462911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.516744, - 43.462911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.516744, - 43.462911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "840448", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "no", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80693, - 45.216413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "520115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.80693, - 45.216413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "520115", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.58243, - 47.86667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706262", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85769, - 45.716101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708689", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269258, - 45.59568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708692", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.269258, - 45.59568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708692", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77883, - 45.80878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708698", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.77883, - 45.80878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708698", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.818807, - 45.903665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706634", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.818807, - 45.903665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706634", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.818807, - 45.903665 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706634", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844539, - 45.711876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747291", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.85769, - 45.716101 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708689", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.844539, - 45.711876 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747291", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261835, - 43.342364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880209", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261835, - 43.342364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880209", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261835, - 43.342364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880209", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261835, - 43.342364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880209", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261835, - 43.342364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880209", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.261835, - 43.342364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880209", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.902871, - 44.420364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708686", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578569, - 45.382478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708680", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.26341, - 43.34128 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851892", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.416422, - 45.449333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708683", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578569, - 45.382478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708680", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.58243, - 47.86667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706262", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.725223, - 45.096274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741687", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.207738, - 49.131942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.036066, - 42.907836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741678", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.036066, - 42.907836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741678", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.036066, - 42.907836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741678", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.036066, - 42.907836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741678", - "socket:typee": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.107127, - 47.121343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741681", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.107127, - 47.121343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741681", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.107127, - 47.121343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741681", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.725223, - 45.096274 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741687", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.524365, - 48.863001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741690", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.207738, - 49.131942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.524365, - 48.863001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741690", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.070324, - 48.894506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741693", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.070324, - 48.894506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741693", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29256, - 43.691865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29256, - 43.691865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29256, - 43.691865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.29256, - 43.691865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787242", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190834, - 48.766404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741696", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190834, - 48.766404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741696", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.207738, - 49.131942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741675", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.207738, - 49.131942 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741675", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.787218, - 46.794239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741699", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519009, - 48.985254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741663", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.883274, - 46.671909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741660", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.883274, - 46.671909 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741660", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588766, - 43.18835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815421", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.588766, - 43.18835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815421", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539401, - 48.84893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539401, - 48.84893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.332443, - 43.828607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815424", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.332443, - 43.828607 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "815424", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519009, - 48.985254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741663", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.519009, - 48.985254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741663", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.433229, - 43.64506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741672", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717779, - 45.551683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741666", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717779, - 45.551683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741666", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717779, - 45.551683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741666", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.717779, - 45.551683 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741666", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.575711, - 45.897844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741669", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.575711, - 45.897844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741669", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.433229, - 43.64506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741672", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.433229, - 43.64506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741672", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.433229, - 43.64506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741672", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.190834, - 48.766404 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741696", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.787218, - 46.794239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741699", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.201649, - 43.688165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708677", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.724571, - 43.782834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741726", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.724571, - 43.782834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741726", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.724571, - 43.782834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741726", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.300644, - 47.04819 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA8", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "771702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.415964, - 43.29045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.415964, - 43.29045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.415964, - 43.29045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.677952, - 45.192056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708671", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.677952, - 45.192056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708671", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012437, - 43.578109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708674", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012437, - 43.578109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708674", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.201649, - 43.688165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA9", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "708677", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.724571, - 43.782834 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741726", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.023903, - 44.928469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741723", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317971, - 48.674145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368138, - 43.602861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741711", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317971, - 48.674145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317971, - 48.674145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741702", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317971, - 48.674145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303434, - 48.690335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303434, - 48.690335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303434, - 48.690335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741705", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303434, - 48.690335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741705", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.372832, - 43.600631 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741708", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368138, - 43.602861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741711", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.368138, - 43.602861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741711", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.023903, - 44.928469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741723", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803755, - 43.710421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741714", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803755, - 43.710421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741714", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803755, - 43.710421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741714", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.803755, - 43.710421 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741714", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86124, - 44.314247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741717", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.86124, - 44.314247 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741717", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.575756, - 45.897811 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741720", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.023903, - 44.928469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741723", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.023903, - 44.928469 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741723", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578569, - 45.382478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368758", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329456, - 43.227057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "697028", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329456, - 43.227057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "697028", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706220", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.244794, - 43.423478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880230", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.244794, - 43.423478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880230", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706223", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012437, - 43.578109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368755", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.012437, - 43.578109 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368755", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.578569, - 45.382478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368758", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.326251, - 47.569098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880233", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95602, - 43.550743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706214", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.326251, - 47.569098 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880233", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230815, - 48.777414 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577481", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.677952, - 45.192056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368761", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.677952, - 45.192056 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368761", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.95602, - 43.550743 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706214", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253828, - 48.954733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789171", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.106898, - 43.724532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706208", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.882355, - 43.580375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706205", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299774, - 48.81154 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "699632", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40506, - 43.293342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "528125", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.40506, - 43.293342 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "528125", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.995669, - 45.826184 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "413741", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.708992, - 45.19392 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747294", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7817, - 43.931774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851880", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7817, - 43.931774 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851880", - "socket:type2_combo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.106898, - 43.724532 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706208", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277046, - 48.878382 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253828, - 48.954733 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789171", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.775482, - 45.757234 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787239", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706211", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.681316, - 44.858162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "588707", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.681316, - 44.858162 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "588707", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.929122, - 43.638122 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "709151", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.538786, - 43.52748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "544733", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.538786, - 43.52748 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "544733", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.366028, - 43.644878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880227", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.366028, - 43.644878 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880227", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675536", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.100637, - 44.145189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706241", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69576, - 48.832096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538370", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69576, - 48.832096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538370", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69576, - 48.832096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538370", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.604714, - 48.795358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706238", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.604714, - 48.795358 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706238", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732208, - 45.979391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "484970", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.732208, - 45.979391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "484970", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.563105, - 50.411865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805293", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.563105, - 50.411865 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805293", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.100637, - 44.145189 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706241", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69576, - 48.832096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538370", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238002, - 48.978759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706244", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238002, - 48.978759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706244", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2564, - 43.341518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706250", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2564, - 43.341518 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706250", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216901, - 48.912298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "413747", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706256", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.999126, - 43.139423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706259", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.999126, - 43.139423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706259", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.999126, - 43.139423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706259", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.69576, - 48.832096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538370", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36665, - 43.830335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706235", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.648388, - 48.526901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706226", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.114644, - 50.625463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706229", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.648388, - 48.526901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706226", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.082393, - 43.595316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "518108", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675539", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675539", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675539", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675539", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675539", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.186634, - 49.25483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "675539", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.114644, - 50.625463 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706229", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.082401, - 43.595318 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "523592", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36665, - 43.830335 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706235", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31026, - 47.742979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781602", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.31026, - 47.742979 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781602", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.088928, - 50.369704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538364", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.735438, - 48.509679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706232", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.735438, - 48.509679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706232", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.788389, - 43.500559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538367", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.788389, - 43.500559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538367", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.165448, - 45.652871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880236", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.165448, - 45.652871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880236", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.882355, - 43.580375 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706205", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432522, - 47.096065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706202", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432522, - 47.096065 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706202", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.311707, - 47.792137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "682547", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825474, - 43.936907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "613606", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825474, - 43.936907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "613606", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.825474, - 43.936907 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "613606", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01857, - 50.4124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.01857, - 50.4124 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880215", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706178", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.327724, - 43.228472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747288", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.327724, - 43.228472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "747288", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.311707, - 47.792137 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "682547", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679922, - 46.80673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "671585", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.088715, - 50.370623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538355", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.679922, - 46.80673 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "671585", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457406, - 48.779841 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "413735", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.676798, - 48.869667 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787230", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.057537, - 47.338212 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706199", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.201649, - 43.688165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368743", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23853, - 43.338135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789180", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706166", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706169", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.201649, - 43.688165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "368743", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167658, - 49.138558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "626510", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706172", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.111948, - 45.896714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "690476", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.560478, - 48.837149 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "690479", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41904, - 43.389626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805266", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41904, - 43.389626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805266", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41904, - 43.389626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805266", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.41904, - 43.389626 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "805266", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.85197, - 43.620221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880212", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.167658, - 49.138558 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "626510", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.826488, - 50.54838 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "754332", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398487, - 48.910105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538361", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.911855, - 43.614964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706193", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.965237, - 43.579598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "514394", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.398092, - 43.546712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706190", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.398092, - 43.546712 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706190", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.245213, - 48.597132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880221", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.020694, - 43.854906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "481980", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.020694, - 43.854906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "481980", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.091362, - 49.059396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577475", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.064439, - 50.661294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "514397", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.064439, - 50.661294 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "514397", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.911855, - 43.614964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706193", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398487, - 48.910105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "538361", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221751, - 49.015624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "481797", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381492, - 43.301458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828300", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381492, - 43.301458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828300", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381492, - 43.301458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828300", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.381492, - 43.301458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828300", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303627, - 48.706046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577478", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303627, - 48.706046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577478", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.566679, - 50.418546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781596", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.566679, - 50.418546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "781596", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.965237, - 43.579598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "514394", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61389, - 47.476594 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "413738", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.057675, - 48.797916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "880218", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.441336, - 48.254578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706187", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.058367, - 43.408157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "756804", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.191045, - 43.697144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851877", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.191045, - 43.697144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851877", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.191045, - 43.697144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851877", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.191045, - 43.697144 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "851877", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329445, - 43.227068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "697025", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.329445, - 43.227068 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "697025", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.899634, - 49.187454 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706184", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.990231, - 43.324307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "494481", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.990231, - 43.324307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "494481", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.441336, - 48.254578 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706187", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.667107, - 48.9551 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "787224", - "socket:type2": "yes", - "fee": "no", - "authentication:none": "yes", - "reservation": "no", - "opening_hours": "24/7" - } + "properties": {} } ] } \ No newline at end of file diff --git a/package.json b/package.json index b749986..9e10c6f 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,8 @@ "simple": "ts-node convert_to_osm_tags.ts", "chargemap": "ts-node chargemap.ts", "filter": "node convert_to_osm_tags.ts --department=974 --engine=true", - "test": "jest --coverage --watch" + "test": "jest --coverage --watch", + "testing": "ts-node convert_to_osm_tags.ts --source=\"./data_other/testing/testing.json\" --testingConfig --engine" }, "dependencies": { "csv": "^6.3.1", diff --git a/tests/main.test.js b/tests/main.test.js index 334ee2e..1669206 100644 --- a/tests/main.test.js +++ b/tests/main.test.js @@ -1,5 +1,5 @@ import mapping_engine from '../mappings/engine.ts' -import { mappingRemoveAll } from '../data_other/testing/mappings_to_test' +import { mappingRemoveAll, mappingSame, mappingPhone, mappingName } from '../data_other/testing/mappings_to_test' import MappingConfigType, {BoundingBoxCoordinatesType, FeatureCollection} from "../mappings/mapping-config.type"; const testingGeoJson = require('../data_other/testing/testing.json') @@ -13,21 +13,44 @@ describe('mapping properties with rich mapping engine', () => { // test('do not add properties at all when there is nothing in tags of the mapping config', () => { // // }) + let feature_to_test = testingGeoJson.features[0]; test('remove all properties when mapping says so', () => { - let Mapping_engine = new mapping_engine(mappingRemoveAll) - - let mapped_point = Mapping_engine.mapElementFromConf(testingGeoJson.features[0]) + let mapped_point = Mapping_engine.mapElementFromConf(feature_to_test) expect(mapped_point).toBeTruthy() - // expect(mapped_point.properties).toBe([]) + expect(Object.keys(mapped_point.properties)).toStrictEqual([]) }) - // test('maps simple key to key, and keep the same value', () => { }) + // test('maps simple key to key, and keep the same value', () => { + // let Mapping_engine = new mapping_engine(mappingSame) + // let mapped_point = Mapping_engine.mapElementFromConf(feature_to_test) + // console.log('mapped_point', mapped_point) + // expect(mapped_point.properties).toBe({ + // equal : "same value" + // }) + // }) + test('retrieve config name in mapping engine', () => { + let Mapping_engine = new mapping_engine(mappingRemoveAll) + expect(Mapping_engine.getConfig().config_name).toBe('testing config mappingRemoveAll') + }) + test('maps nom_amenageur to name, and keep the same value', () => { + let Mapping_engine = new mapping_engine(mappingName) + let mapped_point = Mapping_engine.mapElementFromConf(feature_to_test) + expect(Mapping_engine.getConfig().config_name).toBe('testing config mappingName') + expect(mapped_point).toBe({ + name : "Bob" + }) + }) // test('ignore one value', () => { }) // test('conditional value', () => { }) // test('conditional transform', () => { }) // test('conditional truthy transform', () => { }) // test('conditional falsy transform', () => { }) + // test('conditional phone transform', () => { + // let Mapping_engine = new mapping_engine(mappingPhone) + // let mapped_point = Mapping_engine.mapElementFromConf(feature_to_test) + // expect(mapped_point.properties).toBe({phone:'+33123456789'}) + // }) }) xdescribe('filters points', () => {